diff options
author | Bill Nottingham <notting@redhat.com> | 1999-04-13 15:21:42 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-04-13 15:21:42 +0000 |
commit | ea09026c40777ad1e57a671c154e259bf9a0d244 (patch) | |
tree | ffe0d452b8b2c11b177106b6efd385e7564464af | |
parent | 65775c8430ca9eeba10dd47fb62a844cb5dcee47 (diff) | |
download | initscripts-ea09026c40777ad1e57a671c154e259bf9a0d244.tar initscripts-ea09026c40777ad1e57a671c154e259bf9a0d244.tar.gz initscripts-ea09026c40777ad1e57a671c154e259bf9a0d244.tar.bz2 initscripts-ea09026c40777ad1e57a671c154e259bf9a0d244.tar.xz initscripts-ea09026c40777ad1e57a671c154e259bf9a0d244.zip |
fix typo
-rwxr-xr-x | rc.d/init.d/single | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/single b/rc.d/init.d/single index 9e349be0..0f513d53 100755 --- a/rc.d/init.d/single +++ b/rc.d/init.d/single @@ -35,7 +35,7 @@ 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/rc.d/rc1.d/S[0-9][0-9]/S*; do +for i in /etc/rc.d/rc1.d/S[0-9][0-9]*; do # Check if the script is there. [ ! -f $i ] && continue |