Files
shredos.x86_64/package/openvmtools/shutdown
2021-11-23 23:01:30 +00:00

8 lines
110 B
Bash

#!/bin/sh
#compatibility script for openvmtools
if [ "$1" == "-r" ]; then
/sbin/reboot
else
/sbin/poweroff
fi