mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-20 12:44:17 +00:00
11 lines
201 B
Bash
Executable File
11 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
# halt/shutdown/poweroff/reboot script for sinit
|
|
|
|
case ${0##*/} in
|
|
halt|poweroff) opt=USR1;;
|
|
shutdown) [ "$1" = "-r" ] && opt=INT || opt=USR1;;
|
|
reboot) opt=INT;;
|
|
esac
|
|
|
|
exec kill -s $opt 1
|