summaryrefslogtreecommitdiff
path: root/src/minutils/s6-poweroff.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/minutils/s6-poweroff.c')
-rw-r--r--src/minutils/s6-poweroff.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/minutils/s6-poweroff.c b/src/minutils/s6-poweroff.c
new file mode 100644
index 0000000..b3576b3
--- /dev/null
+++ b/src/minutils/s6-poweroff.c
@@ -0,0 +1,13 @@
+/* ISC license. */
+
+#include <unistd.h>
+#include <sys/reboot.h>
+#include <skalibs/strerr2.h>
+
+int main ()
+{
+ PROG = "s6-poweroff" ;
+ sync() ;
+ reboot(RB_POWER_OFF) ;
+ strerr_diefu1sys(111, "reboot()") ;
+}