Files
SDK_IMX6/package/openvmtools/shutdown
2022-10-31 22:18:58 +08:00

8 lines
110 B
Bash

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