aboutsummaryrefslogtreecommitdiff
path: root/rc.single
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2011-03-26 16:31:58 -0400
committerTom Gundersen <teg@jklm.no>2011-03-29 20:09:59 +0000
commitbb03f0794cd4f80bed757f7e06f5d888d2217962 (patch)
treeb34777a1dc9346660b93cc4b032d67d8f33be7ca /rc.single
parenteba1d8c146be5db20dc030eaee7a75c8ddec25eb (diff)
downloadinitscripts-bb03f0794cd4f80bed757f7e06f5d888d2217962.tar.xz
use bash's kill builtin instead of /bin/kill
Signed-off-by: Dave Reisner <d@falconindy.com> Signed-off-by: Tom Gundersen <teg@jklm.no>
Diffstat (limited to 'rc.single')
-rwxr-xr-xrc.single2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.single b/rc.single
index 2420873..aab2b58 100755
--- a/rc.single
+++ b/rc.single
@@ -50,7 +50,7 @@ if [[ $RUNLEVEL = 1 ]]; then
printsep
printhl "Entering single-user mode..."
# make sure /dev/initctl is in place
- /bin/kill -HUP 1
+ kill -HUP 1
exec /sbin/init -t1 S
fi