Pstark Posted April 24, 2023 Share Posted April 24, 2023 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. Quote Link to comment
Squid Posted April 24, 2023 Share Posted April 24, 2023 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) Quote Link to comment
Pstark Posted April 24, 2023 Author Share Posted April 24, 2023 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? Quote Link to comment
Recommended Posts
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.