mirror of
https://github.com/Steffo99/backup-duplicity.git
synced 2024-12-22 03:34:17 +00:00
17 lines
287 B
Bash
Executable file
17 lines
287 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case "$MODE" in
|
|
backup)
|
|
echo "Running first backup..."
|
|
./backup.sh
|
|
echo "Running cron for daily backups..."
|
|
crond -f -d 5 -l info
|
|
;;
|
|
restore)
|
|
echo "Restoring from latest backup..."
|
|
./restore.sh
|
|
;;
|
|
*)
|
|
echo "No such mode." >> /dev/stderr
|
|
;;
|
|
esac
|