Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
409f6f8cd2 | |||
ff28e04a20 | |||
e2b068e45d | |||
0afbcc55f2 |
@@ -1,4 +1,7 @@
|
|||||||
spark-rc
|
# spark-rc
|
||||||
========
|
|
||||||
|
|
||||||
A simple rc script to kickstart your system.
|
A simple rc script to kickstart your system.
|
||||||
|
|
||||||
|
## depends
|
||||||
|
|
||||||
|
* Enabled sysrq or halt from suckless.org's ubase.
|
||||||
|
32
rc.in
32
rc.in
@@ -1,4 +1,5 @@
|
|||||||
#!@BASH_PATH@
|
#!@BASH_PATH@
|
||||||
|
# vim: ft=zsh
|
||||||
|
|
||||||
# Functions
|
# Functions
|
||||||
rc.rescue() { exec "${cfg_rc_rescue_shell:-"$SHELL"}"; }
|
rc.rescue() { exec "${cfg_rc_rescue_shell:-"$SHELL"}"; }
|
||||||
@@ -29,13 +30,21 @@ rc.tmpfiles() {
|
|||||||
rc.mount() {
|
rc.mount() {
|
||||||
for fs in "${cfg_mounts[@]}"; do
|
for fs in "${cfg_mounts[@]}"; do
|
||||||
echo "$fs" | while IFS=':' read device fs_type mountpoint mount_options; do
|
echo "$fs" | while IFS=':' read device fs_type mountpoint mount_options; do
|
||||||
|
if mountpoint -q "$mountpoint"; then
|
||||||
|
if [[ "$mount_options" ]]; then
|
||||||
|
mount -o "remount,$mount_options" "$mountpoint"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if ! [[ -d "$mountpoint" ]]; then
|
||||||
|
mkdir -p "$mountpoint"
|
||||||
|
fi
|
||||||
|
|
||||||
[[ "$mount_options" ]] || { mount_options='defaults'; }
|
if ! [[ "$mount_options" ]]; then
|
||||||
|
mount_options='defaults'
|
||||||
|
fi
|
||||||
|
|
||||||
mountpoint -q "$mountpoint" || {
|
|
||||||
[[ -d "$mountpoint" ]] || { mkdir -p "$mountpoint"; }
|
|
||||||
mount "$device" -n -t "$fs_type" -o "$mount_options" "$mountpoint"
|
mount "$device" -n -t "$fs_type" -o "$mount_options" "$mountpoint"
|
||||||
}
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@@ -120,10 +129,21 @@ rc.boot() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
rc.halt() {
|
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
|
case "$action" in
|
||||||
poweroff|shutdown) echo 'o' > /proc/sysrq-trigger;;
|
|
||||||
halt) :;;
|
halt) :;;
|
||||||
reboot|*) echo 'b' > /proc/sysrq-trigger;;
|
poweroff|shutdown) rc.halt_poweroff;;
|
||||||
|
reboot|*) rc.halt_reboot;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user