mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-11 10:42:04 +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
|