mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 06:19:14 +08:00
9 lines
115 B
Bash
9 lines
115 B
Bash
#!/bin/sh
|
|
#compatibility script for openvmtools
|
|
|
|
if [ "$1" == "-r" ]; then
|
|
/sbin/reboot
|
|
else
|
|
/sbin/poweroff
|
|
fi
|