Hi
it's possible schedule a shutdown to a single VM?
I try with a bash script in crontab but doesn't work.
startvm() {
/usr/sbin/qm start $VM_ID
}
stopvm() {
/usr/sbin/qm stop $VM_ID
}
shutdownvm() {
/usr/sbin/qm shutdown $VM_ID
}
case "$1" in
start) startvm ;;
stop)...