Compare commits
No commits in common. "master" and "1.10.2" have entirely different histories.
|
@ -5,4 +5,3 @@ A simple rc script to kickstart your system.
|
||||||
## depends
|
## depends
|
||||||
|
|
||||||
* Enabled sysrq or halt from suckless.org's ubase.
|
* Enabled sysrq or halt from suckless.org's ubase.
|
||||||
* /proc support.
|
|
||||||
|
|
8
rc.conf
8
rc.conf
|
@ -11,12 +11,9 @@ cfg_hostname='spark'
|
||||||
# Uncomment and change this to yours
|
# Uncomment and change this to yours
|
||||||
#cfg_timezone='Europe/Moscow'
|
#cfg_timezone='Europe/Moscow'
|
||||||
|
|
||||||
# Early fsck, if you don't have such a step in your initrd
|
|
||||||
cfg_early_fsck=1
|
|
||||||
|
|
||||||
# Services that start with @ are executed in parallel
|
# Services that start with @ are executed in parallel
|
||||||
cfg_services+=(
|
cfg_services+=(
|
||||||
'mount' 'sysctl' 'rsyslogd'
|
'fsck' 'mount' 'sysctl' 'rsyslogd'
|
||||||
'@lo.iface' '@scron' @agetty-tty{2..6}
|
'@lo.iface' '@scron' @agetty-tty{2..6}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -43,6 +40,3 @@ cfg_mounts=(
|
||||||
# Some temporary directories and files
|
# Some temporary directories and files
|
||||||
cfg_tmpdirs+=( '/run/lock' '/run/lock/lvm' '/run/lvm' '/run/user' )
|
cfg_tmpdirs+=( '/run/lock' '/run/lock/lvm' '/run/lvm' '/run/user' )
|
||||||
cfg_tmpfiles+=( '/run/utmp' )
|
cfg_tmpfiles+=( '/run/utmp' )
|
||||||
|
|
||||||
# How long do we wait for all processes to die nicely?
|
|
||||||
cfg_killall5_timeout=30
|
|
||||||
|
|
17
rc.in
17
rc.in
|
@ -101,10 +101,10 @@ rc.services_stop() {
|
||||||
|
|
||||||
rc.stop_everything() {
|
rc.stop_everything() {
|
||||||
echo "Politely asking all processes to shut down..."
|
echo "Politely asking all processes to shut down..."
|
||||||
killall5 -s 15 -w "$cfg_killall5_timeout"
|
killall5 -15; sleep 3
|
||||||
|
|
||||||
echo "Killing the remaning ones..."
|
echo "Killing the remaning ones..."
|
||||||
killall5 -s 9
|
killall5 -9
|
||||||
}
|
}
|
||||||
|
|
||||||
rc.unmount_everything() {
|
rc.unmount_everything() {
|
||||||
|
@ -118,8 +118,6 @@ rc.remount_root() {
|
||||||
}
|
}
|
||||||
|
|
||||||
rc.boot() {
|
rc.boot() {
|
||||||
(( cfg_early_fsck )) && rc.fsck
|
|
||||||
|
|
||||||
rc.mount
|
rc.mount
|
||||||
rc.tmpfiles
|
rc.tmpfiles
|
||||||
rc.hostname
|
rc.hostname
|
||||||
|
@ -151,7 +149,6 @@ rc.halt() {
|
||||||
|
|
||||||
rc.sync() {
|
rc.sync() {
|
||||||
echo "Syncing disks."
|
echo "Syncing disks."
|
||||||
sync
|
|
||||||
}
|
}
|
||||||
|
|
||||||
rc.shutdown() {
|
rc.shutdown() {
|
||||||
|
@ -183,21 +180,11 @@ rc.timezone() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rc.fsck() {
|
|
||||||
declare root_rw=0
|
|
||||||
touch /rc-write-test && root_rw=1
|
|
||||||
(( root_rw )) && mount -o remount,ro /
|
|
||||||
fsck -A -C -p
|
|
||||||
(( root_rw )) && mount -o remount,rw /
|
|
||||||
}
|
|
||||||
|
|
||||||
rc.main() {
|
rc.main() {
|
||||||
source "@ETC@/rc.conf"
|
source "@ETC@/rc.conf"
|
||||||
|
|
||||||
# Default XDG_RUNTIME_DIR for all non-system users
|
# Default XDG_RUNTIME_DIR for all non-system users
|
||||||
# rtkit:x:133:133:RealtimeKit:/proc:/sbin/nologin
|
# rtkit:x:133:133:RealtimeKit:/proc:/sbin/nologin
|
||||||
# Also add one for root
|
|
||||||
cfg_tmpdirs+=( "/run/user/0:700:0:0" )
|
|
||||||
while IFS=':' read -r _ _ uid gid _; do
|
while IFS=':' read -r _ _ uid gid _; do
|
||||||
if (( uid >= 1000 )); then
|
if (( uid >= 1000 )); then
|
||||||
cfg_tmpdirs+=( "/run/user/$uid:700:$uid:$gid" )
|
cfg_tmpdirs+=( "/run/user/$uid:700:$uid:$gid" )
|
||||||
|
|
|
@ -37,60 +37,14 @@ get_procs_to_kill() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
pids_exist() {
|
|
||||||
for i in "$@"; do
|
|
||||||
if [[ -d "/proc/$i" ]]; then
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
pid_wait() {
|
|
||||||
declare counter
|
|
||||||
|
|
||||||
while pids_exist "$@"; do
|
|
||||||
if (( counter == timeout )); then
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
sleep 1
|
|
||||||
|
|
||||||
(( counter++ ))
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
timeout=30
|
|
||||||
signal=15
|
|
||||||
|
|
||||||
while (( $# )); do
|
|
||||||
case $1 in
|
|
||||||
-w)
|
|
||||||
flag_wait=1
|
|
||||||
timeout=$2
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
|
|
||||||
-s)
|
|
||||||
signal=$2
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
my_tree=( $(get_my_tree) self thread-self )
|
my_tree=( $(get_my_tree) self thread-self )
|
||||||
all_procs=( $(get_all_procs) )
|
all_procs=( $(get_all_procs) )
|
||||||
procs_to_kill=( $(get_procs_to_kill) )
|
procs_to_kill=( $(get_procs_to_kill) )
|
||||||
|
|
||||||
kill -n "$signal" "${procs_to_kill[@]}" 2>/dev/null
|
signal="${1:-"-15"}"
|
||||||
|
|
||||||
if (( flag_wait )); then
|
kill "$signal" "${procs_to_kill[@]}" 2>/dev/null
|
||||||
pid_wait "${procs_to_kill[@]}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user