mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-05-18 06:28:58 +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
|