March 12, 201610 yr I'm using a VM backup script written by Ionix to back up my cache drive, so VMs and Dockers. I get an error saying that it can't find the xl command. Am I missing a Plugin? Also it is not backing up the docker image in the root of cache drive. There are no Dockers running and I am using: # find running docker containers declare -a Containers=(`docker ps -q`) # stop running containers for Cont in "${Containers[@]}" do echo `date` " Stopping Container: " $Cont >> $LogFile docker stop $Cont >> $LogFile done Although I suspect the problem is more likely my rsync: /usr/bin/rsync -avrtH --delete /mnt/cache/ $BackupDir >> $LogFile Thx
March 12, 201610 yr Author Never Mind, the VM script was looking for directories to backup, so ignoring the root. Getting a complete backup now, but still no xl command found?????
Archived
This topic is now archived and is closed to further replies.