diff options
author | Bill Nottingham <notting@redhat.com> | 1999-08-21 18:12:21 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-08-21 18:12:21 +0000 |
commit | e76fb68ba2a6732645264d545022f1363020668a (patch) | |
tree | f11caa96b10056feebbb01fb3fb014c1fa84713b /service | |
parent | ffce74242c6495176ffbd58ff7f890dd0a17561e (diff) | |
download | initscripts-e76fb68ba2a6732645264d545022f1363020668a.tar initscripts-e76fb68ba2a6732645264d545022f1363020668a.tar.gz initscripts-e76fb68ba2a6732645264d545022f1363020668a.tar.bz2 initscripts-e76fb68ba2a6732645264d545022f1363020668a.tar.xz initscripts-e76fb68ba2a6732645264d545022f1363020668a.zip |
fix this. this has been broke for a while
Diffstat (limited to 'service')
-rwxr-xr-x | service | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ if [ -z "$1" ]; then echo "no service specified" >&2 exit 1 elif [ -x "/etc/rc.d/init.d/$1" ]; then - "/etc/rc.d/init.d/$1" "basename \"$0\"" + "/etc/rc.d/init.d/$1" $* else echo "$1: unrecognized service" >&2 exit 1 |