I have developed a simple backup bash script which runs fine in CLI. I have converted it into an executable in /usr/local/bin. Additionally, I have scheduled it in KCron. The job is showing as enabled. However it will not run either on schedule or by trying to induce it to run immediately in KCron. I'm attaching the actual bash job for reference.
Any ideas?
Many Thanks,
IndyTim
Any ideas?
Code:
#!/bin/bash # This program will run the tar backup of the Apache Web Server Programs to the backup partition # of=/media/LxBackup/Server-BU/www/www-$(date +%Y-%m-%d).tar.gz tar -cvz $of /var/www
IndyTim
Comment