From 1ff5031122b1d16fbeb9c5e00ef366e4527c00ef Mon Sep 17 00:00:00 2001 From: "Kurt J. Bosch" Date: Tue, 12 Jul 2011 17:38:27 +0200 Subject: functions: Cosmetics: Refactor usage of local daemon variables --- functions | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'functions') diff --git a/functions b/functions index 79da659..1cfcf28 100644 --- a/functions +++ b/functions @@ -196,9 +196,9 @@ have_daemon() { # Check if $1 is started at boot ck_autostart() { - local d - for d in "${DAEMONS[@]}"; do - [[ $1 = "${d#@}" ]] && return 1 + local daemon + for daemon in "${DAEMONS[@]}"; do + [[ $1 = "${daemon#@}" ]] && return 1 done return 0 } @@ -276,10 +276,11 @@ stop_all_daemons() { done # Shutdown daemons in reverse order - local i + local i daemon for (( i=${#DAEMONS[@]}-1; i>=0; i-- )); do [[ ${DAEMONS[i]} = '!'* ]] && continue - ck_daemon "${DAEMONS[i]#@}" || stop_daemon "${DAEMONS[i]#@}" + daemon=${DAEMONS[i]#@} + ck_daemon "$daemon" || stop_daemon "$daemon" done } -- cgit v1.2.3