Search results

  1. J

    [SOLVED] Start VM everyday at 7:00am

    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 * * *...