diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-03-19 12:33:27 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-03-19 12:33:27 +0000 |
commit | d18999790c462bc780bff457e6bb03cd88e488f3 (patch) | |
tree | 299f9b86d74b10d5b63195c56e3fd9ba75d8f93f /src/minutils/s6-poweroff.c | |
parent | 96893711ec76b3c3b554313d7e97560b3cd62179 (diff) | |
download | s6-linux-utils-d18999790c462bc780bff457e6bb03cd88e488f3.tar.xz |
Changes to s6-halt/s6-reboot/s6-poweroff. Default behaviour changed.
Major version bump: rc for 2.1.0.0
Diffstat (limited to 'src/minutils/s6-poweroff.c')
-rw-r--r-- | src/minutils/s6-poweroff.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/src/minutils/s6-poweroff.c b/src/minutils/s6-poweroff.c index b3576b3..f9f7747 100644 --- a/src/minutils/s6-poweroff.c +++ b/src/minutils/s6-poweroff.c @@ -1,13 +1,7 @@ /* 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()") ; -} +#undef PROGNAME +#define PROGNAME "s6-poweroff" +#undef WHATDEFAULT +#define WHATDEFAULT 2 +#include "hpr.c" |