diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2005-08-14 14:49:04 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-14 14:49:04 +0000 |
commit | 029999acbb7522240c0697332d18218332e13866 (patch) | |
tree | 352da5d9d76c65026d0df067bd5c334fa47d391a | |
parent | 37f7ad3401acb5edf6633dd99bc56db96d404d8d (diff) |
Update so that the disk leds aren't switched on/off
-rw-r--r-- | packages/openslug-init/openslug-init-0.10/initscripts/zleds | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/openslug-init/openslug-init-0.10/initscripts/zleds b/packages/openslug-init/openslug-init-0.10/initscripts/zleds index c3ad3d2d64..c4e2b37219 100644 --- a/packages/openslug-init/openslug-init-0.10/initscripts/zleds +++ b/packages/openslug-init/openslug-init-0.10/initscripts/zleds @@ -30,8 +30,8 @@ colour() { # leds syntax is -A +<init state> /<new state> case "$1" in -start) leds -A +"$(colour "$runlevel")";; -stop) leds -A +"$(colour "$previous")" /"$(colour "$runlevel")";; +start) leds -gr +"$(colour "$runlevel")";; +stop) leds -gr +"$(colour "$previous")" /"$(colour "$runlevel")";; *) echo "led change: $1: command ignored" >&2;; esac |