blob: 6ef876a831392c234037dcde2d88cee453dd3ee5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# rcS-emergency - SysVinit emergency compatibility
#
# This task is run before rc.sysinit if emergency is passed to kernel
#
# Do not edit this file directly. If you want to change the behaviour,
# please create a file rcS-emergency.override and put your changes there.
console owner
task
script
. /etc/sysconfig/init
plymouth --hide-splash || true
[ -z "$EMERGENCY" ] && EMERGENCY=/sbin/sulogin
exec $EMERGENCY
end script
|