checkbashisms: clean up export statements.

Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
This commit is contained in:
Robin H. Johnson
2012-11-07 00:22:33 +00:00
parent 3809eac54d
commit 1b0130961e
13 changed files with 24 additions and 20 deletions

View File

@@ -46,11 +46,11 @@ if [ -z "$1" -o -z "$2" ]; then
fi
# So daemons know where to recall us if needed
export RC_SERVICE="$1"
RC_SERVICE="$1" ; export RC_SERVICE
shift
# Compat
export SVCNAME=$RC_SVCNAME
SVCNAME=$RC_SVCNAME ; export SVCNAME
# Dependency function
config() {