mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
8 lines
110 B
Bash
8 lines
110 B
Bash
#!/bin/sh
|
|
#compatibility script for openvmtools
|
|
if [ "$1" == "-r" ]; then
|
|
/sbin/reboot
|
|
else
|
|
/sbin/poweroff
|
|
fi
|