wok-6.x view shutdown/stuff/shutdown @ rev 19710

xfig: update for libpng >= 1.4.1
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 15 16:08:02 2017 +0100 (2017-02-15)
parents
children 02c70d036ea0
line source
1 #!/bin/sh
3 #
4 # This should do more, but this at least gets other scripts/tools the ability to
5 # use 'shutdown -r now' or similar.
6 #
8 if [ "x$1" == "x-r" ]; then
9 /sbin/reboot
10 else
11 /sbin/poweroff
12 fi