aboutsummaryrefslogtreecommitdiffstats
path: root/event.d/rc1
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2008-04-25 14:16:31 -0400
committerBill Nottingham <notting@redhat.com>2008-04-25 14:16:31 -0400
commit951e577ef3b59b24f7366d08ce738980f327cf5d (patch)
tree7626ede10d04c07163b2a1b8f02df9af9567f6b1 /event.d/rc1
parent6d68871c340d80954e1d474c9addc5cb4f30e968 (diff)
downloadinitscripts-951e577ef3b59b24f7366d08ce738980f327cf5d.tar
initscripts-951e577ef3b59b24f7366d08ce738980f327cf5d.tar.gz
initscripts-951e577ef3b59b24f7366d08ce738980f327cf5d.tar.bz2
initscripts-951e577ef3b59b24f7366d08ce738980f327cf5d.tar.xz
initscripts-951e577ef3b59b24f7366d08ce738980f327cf5d.zip
Import from event-compat-sysv-0.3.9-14.fc9
- Rework rc1, rcS, rcS-sulogin to use post-stop to avoid spurious 'rcS killed' messages (#444001) - Allow 's' for single-user mode (#443554)
Diffstat (limited to 'event.d/rc1')
-rw-r--r--event.d/rc18
1 files changed, 8 insertions, 0 deletions
diff --git a/event.d/rc1 b/event.d/rc1
index 35de4d3e..5153c8c2 100644
--- a/event.d/rc1
+++ b/event.d/rc1
@@ -1,6 +1,9 @@
# rc1 - runlevel 1 compatibility
#
# This task runs the old sysv-rc runlevel 1 ("single-user") scripts.
+# /etc/rc.d/rc 1 will run the /etc/rc.d/rc1.d scripts.
+# telinit S will run whichever task has "start on runlevel S",
+# normally /etc/event.d/rcS-sulogin
start on runlevel 1
@@ -17,3 +20,8 @@ script
exec /etc/rc.d/rc 1
end script
+post-stop script
+ clear
+ echo "Telling INIT to go to single user mode."
+ exec telinit S
+end script