Mercurial > hg > soundsoftware-site
annotate deploy/config/cron.monthly/00-backup-files @ 1587:d8949733849d dockerise
Another rearrangement, to share provisioning scripts
author | Chris Cannam |
---|---|
date | Thu, 17 Aug 2017 11:55:29 +0100 |
parents | extra/soundsoftware/scripted-deploy/config/cron.monthly/00-backup-files@d0d59d12db94 |
children | 45b0571b684d |
rev | line source |
---|---|
Chris@1586 | 1 #!/bin/sh |
Chris@1586 | 2 for location in var/www etc/apache2 etc/cron.*; do |
Chris@1586 | 3 target="/var/files/backups/`echo $location | sed 's,/,_,g'`-`date +%Y%m%d%H%M`" |
Chris@1586 | 4 oldmask=`umask` |
Chris@1586 | 5 umask 0277 |
Chris@1586 | 6 cd / |
Chris@1586 | 7 tar cjf "$target".tar.bz2 "$location" |
Chris@1586 | 8 umask "$oldmask" |
Chris@1586 | 9 done |
Chris@1586 | 10 |