April 24, 20233 yr I'm attempting to make my own backup script. This is my script: /etc/rc.d/rc.docker stop && sleep 1m && tar -zcf /mnt/remotes/TRUENAS.HOME.ARPA_truenas/appdata_backup_script/appdata_backup-$(date +%Y%m%d_T_%H_%M).tar.gz -C /mnt/user/ PC\ Drive && /etc/rc.d/rc.docker start && sleep 3m && find /mnt/remotes/TRUENAS.HOME.ARPA_truenas/appdata_backup_script/* -mtime +45 -delete This is the output: Tower# /etc/rc.d/rc.docker stop && sleep 1m && tar -zcf /mnt/remotes/TRUENAS.HOME.ARPA_truenas/appdata_backup_script/appdata_backup-$(date +%Y%m%d_T_%H_%M).tar.gz -C /mnt/user/ PC\ Drive && /etc/rc.d/rc.docker start && sleep 3m && find /mnt/remotes/TRUENAS.HOME.ARPA_truenas/appdata_backup_script/* -mtime +45 -delete stopping dockerd ... waiting for docker to die ... starting dockerd ... Tower# It doesn't get past the stoping docker. Can anyone help? This is my first script BTW.
April 24, 20233 yr exit code from rc.docker stop is not zero in your case so the rest of the commands never execute (&& continues execution if previous return code was 0)
April 24, 20233 yr Author 1 hour ago, Squid said: exit code from rc.docker stop is not zero in your case so the rest of the commands never execute (&& continues execution if previous return code was 0) What does the UI use when you change "enable docker" to no in docker manager?
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.