blob: 3697ac324a003721cdfcec87163c3cf69dd8f421 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#!/bin/bash
#
# /etc/rc.single: Single-user start-up script.
#
. /etc/rc.conf
. /etc/rc.d/functions
run_hook single_start
if [[ $PREVLEVEL != N ]]; then
stop_all_daemons
run_hook single_prekillall
kill_all
run_hook single_postkillall
# Start/trigger udev, load MODULES, and settle udev
udevd_modprobe single
# Removing leftover files
remove_leftover
fi
run_hook single_end
bootlogd_stop
if [[ $RUNLEVEL = 1 ]]; then
printsep
printhl "Entering single-user mode..."
# make sure /dev/initctl is in place
kill -HUP 1
exec init -t1 S
fi
# End of file
# vim: set ts=2 sw=2 noet:
|