diff --git a/init.d/system b/init.d/system new file mode 100755 index 0000000..19aad44 --- /dev/null +++ b/init.d/system @@ -0,0 +1,13 @@ +#!/usr/bin/env watchman + +unset start stop restart reload status + +reboot() { + echo "Rebooting..." + kill -2 1 +} + +poweroff() { + echo "Powering off..." + kill -10 1 +}