mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-07 16:59:18 +00:00
10 lines
277 B
Bash
Executable File
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
|