diff options
author | Florian La Roche <laroche@redhat.com> | 2002-06-26 09:02:16 +0000 |
---|---|---|
committer | Florian La Roche <laroche@redhat.com> | 2002-06-26 09:02:16 +0000 |
commit | b1c3fe8675bf6d6831b2d63adb42dc43ef96f69e (patch) | |
tree | 4298e55eca3bc8b767ae7cf695261cd119d75712 /service | |
parent | a12d5004ebd0035494247f71c5cebc060729c569 (diff) | |
download | initscripts-b1c3fe8675bf6d6831b2d63adb42dc43ef96f69e.tar initscripts-b1c3fe8675bf6d6831b2d63adb42dc43ef96f69e.tar.gz initscripts-b1c3fe8675bf6d6831b2d63adb42dc43ef96f69e.tar.bz2 initscripts-b1c3fe8675bf6d6831b2d63adb42dc43ef96f69e.tar.xz initscripts-b1c3fe8675bf6d6831b2d63adb42dc43ef96f69e.zip |
- start cleaning up some sh coding things
Diffstat (limited to 'service')
-rwxr-xr-x | service | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -12,8 +12,7 @@ if [ $# -eq 0 ]; then fi cd / -while [ $# -gt 0 ] -do +while [ $# -gt 0 ]; do case "${1}" in --help | -h | --h* ) echo $"${USAGE}" >&2 @@ -26,7 +25,7 @@ do *) if [ -z "${SERVICE}" -a $# -eq 1 -a "${1}" = "--status-all" ]; then cd / - for SERVICE in *; do + for SERVICE in * ; do case "${SERVICE}" in functions | halt | killall | single| linuxconf| kudzu | \ *rpmorig | *rpmnew | *rpmsave | *~ | *.orig) |