To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / deploy / config / cron.monthly / 00-backup-files @ 1601:07deb8466f65

History | View | Annotate | Download (239 Bytes)

1
#!/bin/sh
2
cd /
3
for location in var/www etc/apache2 etc/cron.*; do
4
	target="/var/files/backups/`echo $location | sed 's,/,_,g'`-`date +%Y%m%d%H%M`"
5
	oldmask=`umask`
6
	umask 0277
7
	tar cjf "$target".tar.bz2 "$location"
8
	umask "$oldmask"
9
done
10