diff options
author | Florian La Roche <laroche@redhat.com> | 2002-07-05 20:21:37 +0000 |
---|---|---|
committer | Florian La Roche <laroche@redhat.com> | 2002-07-05 20:21:37 +0000 |
commit | 2b62de481392d9f841634df72d6b6e6168a61f36 (patch) | |
tree | b56d7e07333a30e859e1195873fbb28cec863b8f /rc.d/init.d/single | |
parent | c75aa20f21dee7c55863529ea73ac000051e0b95 (diff) | |
download | initscripts-2b62de481392d9f841634df72d6b6e6168a61f36.tar initscripts-2b62de481392d9f841634df72d6b6e6168a61f36.tar.gz initscripts-2b62de481392d9f841634df72d6b6e6168a61f36.tar.bz2 initscripts-2b62de481392d9f841634df72d6b6e6168a61f36.tar.xz initscripts-2b62de481392d9f841634df72d6b6e6168a61f36.zip |
- only cosmetic changes
Diffstat (limited to 'rc.d/init.d/single')
-rwxr-xr-x | rc.d/init.d/single | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rc.d/init.d/single b/rc.d/init.d/single index 2f223822..f1c86bd5 100755 --- a/rc.d/init.d/single +++ b/rc.d/init.d/single @@ -12,7 +12,7 @@ . /etc/init.d/functions -if [ "$1" != "start" ] ; then +if [ "$1" != "start" ]; then exit 0 fi @@ -27,9 +27,9 @@ if [ -f /proc/sys/kernel/modprobe ]; then fi # If they want to run something in single user mode, might as well run it... -for i in /etc/rc1.d/S[0-9][0-9]*; do - # Check if the script is there. - [ -f $i ] || continue +for i in /etc/rc1.d/S[0-9][0-9]* ; do + # Check if the script is there. + [ -f $i ] || continue # Don't run [KS]??foo.{rpmsave,rpmorig} scripts [ "${i%.rpmsave}" != "${i}" ] && continue |