#!{{ borgbackup_shell }} if [ -z "$1" ] || [ ! -z "$2" ] then printf "Possible: info | init | list | backup | mount \n\n" fi # Sourcing the backup-passphrase . ~{{ borgbackup_client_user }}/.borg.passphrase # Small helper commands, like listing backups, will help us in the future :) if [ "$1" = "info" ] then if [ -z "$2" ]; then printf "run $0 with list and use the backup-tag to request information\n"; exit 1; fi {% for b in borgbackup_servers %} {% if b.type == 'hetzner' %} REPOSITORY=ssh://{{ b.user }}@{{ b.fqdn }}:23/./{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% else %} REPOSITORY={{ b.user }}@{{ b.fqdn }}:{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% endif %} /usr/local/bin/borg info {{ b.options }} $REPOSITORY::$2 {% endfor %} exit 0 fi if [ "$1" = "mount" ] then if [ -z "$2" ]; then printf "Select the backup-server\n"; exit 1; fi if [ -z "$3" ]; then printf "Select the backup to mount\n"; exit 1; fi if [ -z "$4" ]; then printf "Select the path to mount the backup on\n"; exit 1; fi {% for b in borgbackup_servers %} {% if b.type == 'hetzner' %} REPOSITORY=ssh://{{ b.user }}@{{ b.fqdn }}:23/./{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% else %} REPOSITORY={{ b.user }}@{{ b.fqdn }}:{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% endif %} /usr/local/bin/borg mount {{ b.options }} $REPOSITORY::$3 $4 if [ "$?" = "0" ]; then printf "Backup mounted on $4, do not forget to unmount!\n"; fi exit 0 {% endfor %} fi if [ "$1" = "list" ] then {% for b in borgbackup_servers %} {% if b.type == 'hetzner' %} REPOSITORY=ssh://{{ b.user }}@{{ b.fqdn }}:23/./{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% else %} REPOSITORY={{ b.user }}@{{ b.fqdn }}:{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% endif %} printf "Archives on {{ b.fqdn }} :\n" /usr/local/bin/borg list {{ b.options }} -v $REPOSITORY {% endfor %} exit 0 fi if [ "$1" = "init" ] then {% for b in borgbackup_servers %} {% if b.type == 'hetzner' %} REPOSITORY=ssh://{{ b.user }}@{{ b.fqdn }}:23/./{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% else %} REPOSITORY={{ b.user }}@{{ b.fqdn }}:{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% endif %} /usr/local/bin/borg init --encryption={{ borgbackup_encryption_mode }}{% if borgbackup_appendonly_repoconfig %} --append-only{% endif %} {{ b.options }} $REPOSITORY {% endfor %} exit 0 fi if [ "$1" = "backup" ] then date=`date +%Y%m%d-%H%M` # Running some commands pre-backup {% for precommand in borgbackup_pre_commands %} {{ precommand }} {% endfor %} {% for b in borgbackup_servers %} printf "Backing up to {{ b.fqdn }} :\n" {% if b.type == 'hetzner' %} REPOSITORY=ssh://{{ b.user }}@{{ b.fqdn }}:23/./{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% else %} REPOSITORY={{ b.user }}@{{ b.fqdn }}:{{ b.home }}{{ b.pool }}/{{ inventory_hostname }} {% endif %} /usr/local/bin/borg create --progress --compression {{ borgbackup_compression }} --stats {{ b.options }} $REPOSITORY::$date {% for dir in borgbackup_include %}{{ dir }} {% endfor %}{% if automysql.stat.isdir is defined and automysql.stat.isdir == True %}/var/lib/automysqlbackup{% endif %} {% for dir in borgbackup_exclude %} --exclude '{{ dir }}'{% endfor %} if [ "$?" -eq "0" ]; then printf "Backup succeeded on $date to {{ b.fqdn }}\n" >> /var/log/borg-backup.log; fi {% if not borgbackup_appendonly %} # prune old backups /usr/local/bin/borg prune {{ b.options }} -v $REPOSITORY -H {{ borgbackup_retention.hourly }} -d {{ borgbackup_retention.daily }} -w {{ borgbackup_retention.weekly }} -m {{ borgbackup_retention.monthly }} -y {{ borgbackup_retention.yearly }} {% endif %} {% endfor %} # Running some commands post-backup {% for postcommand in borgbackup_post_commands %} {{ postcommand }} {% endfor %} fi