linuxOS_PX30_CAR/buildroot/package/openvmtools/shutdown
2026-01-20 14:00:13 +08:00

8 lines
110 B
Bash

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