Add new package, open-vm-tools is Open Virtual Machine Tools for VMware guest OS tested: OpenWrt master and 18.06.2 (x86_64) on ESXi 6.5, 6.7 Signed-off-by: Yuhei OKAWA <tochiro.srchack@gmail.com>
8 lines
115 B
Bash
8 lines
115 B
Bash
#!/bin/sh
|
|
#compatibility script for openvmtools
|
|
|
|
if [ "$1" == "-r" ]; then
|
|
/sbin/reboot
|
|
else
|
|
/sbin/poweroff
|
|
fi
|