mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
44 lines
661 B
Bash
Executable file
44 lines
661 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# /etc/rc.single: Single-user startup 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 up our mini logger until syslog takes over
|
|
minilogd
|
|
|
|
# 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:
|