Include batteries with backup command

This commit is contained in:
Salt 2025-01-19 13:15:03 -06:00
parent 05b4bcc4f1
commit e9eccef348
2 changed files with 2 additions and 5 deletions

View File

@ -5,10 +5,6 @@
- hosts: device_roles_workstation - hosts: device_roles_workstation
roles: roles:
- role: backup - role: backup
vars:
backup_s3backup_tar_args_extra: h
backup_s3backup_list_extra:
- /home/salt
tags: [ backup ] tags: [ backup ]
- role: desktop - role: desktop
tags: [ desktop ] tags: [ desktop ]

View File

@ -20,7 +20,8 @@ backup_s3_aws_secret_access_key: REPLACEME
# List of files/directories to back up # List of files/directories to back up
# Note that tar is NOT instructed to recurse through symlinks # Note that tar is NOT instructed to recurse through symlinks
# If you want it to do that, end the path with a slash! # If you want it to do that, end the path with a slash!
backup_s3backup_list: [] backup_s3backup_list:
- "/home/{{ adminuser_name }}"
backup_s3backup_list_extra: [] backup_s3backup_list_extra: []
# List of files/directories to --exclude # List of files/directories to --exclude
backup_s3backup_exclude_list: [] backup_s3backup_exclude_list: []