Hi to all,
I m looking for a sulution for start VM(105) everyday at 7:00 if it is stopped.
it's not worked in crontab.
start.sh
#! /bin/bash
status=`qm status 105 | awk -F " " '{print $2}'`
if [ $status = "stopped" ] ; then
qm start 105
fi
crontab -l
0 7 * * *...