Compare commits
3 커밋
작성자 | SHA1 | 날짜 | |
---|---|---|---|
409f6f8cd2 | |||
ff28e04a20 | |||
e2b068e45d |
@@ -1,4 +1,7 @@
|
||||
spark-rc
|
||||
========
|
||||
# spark-rc
|
||||
|
||||
A simple rc script to kickstart your system.
|
||||
|
||||
## depends
|
||||
|
||||
* Enabled sysrq or halt from suckless.org's ubase.
|
||||
|
16
rc.in
16
rc.in
@@ -1,4 +1,5 @@
|
||||
#!@BASH_PATH@
|
||||
# vim: ft=zsh
|
||||
|
||||
# Functions
|
||||
rc.rescue() { exec "${cfg_rc_rescue_shell:-"$SHELL"}"; }
|
||||
@@ -128,10 +129,21 @@ rc.boot() {
|
||||
}
|
||||
|
||||
rc.halt() {
|
||||
if type -P halt; then
|
||||
function rc.halt_poweroff { halt -p; }
|
||||
function rc.halt_reboot { halt -r; }
|
||||
elif [[ -f /proc/sysrq-trigger ]]; then
|
||||
function rc.halt_poweroff { echo 'o' > /proc/sysrq-trigger; }
|
||||
function rc.halt_reboot { echo 'b' > /proc/sysrq-trigger; }
|
||||
else
|
||||
printf 'Cannot halt, please install halt from suckless.org ubase or enable sysrq.\n'
|
||||
return 1
|
||||
fi
|
||||
|
||||
case "$action" in
|
||||
poweroff|shutdown) echo 'o' > /proc/sysrq-trigger;;
|
||||
halt) :;;
|
||||
reboot|*) echo 'b' > /proc/sysrq-trigger;;
|
||||
poweroff|shutdown) rc.halt_poweroff;;
|
||||
reboot|*) rc.halt_reboot;;
|
||||
esac
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user