rudolfkoenig 99625714a6 FRITZ!Box image fixes (7390/7270)
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@3941 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2013-09-22 14:26:57 +00:00

10 lines
277 B
Bash
Executable File

#!/bin/sh
# optional backup command to speed up backup on th FB by omitting the backup of
# the perl directory. To use it set attr global backupcmd backup.sh
tar cf - FHEM fhem.cfg fhem.pl log startfhem* www |
gzip -3 > backup/backup-`date -I`.tar.gz
echo backup done
exit 0