mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-04-30 13:41:24 +01: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
|