Add ability to exclude from s3backup.sh, lay out gameserver backups more nicely to respect this
This commit is contained in:
parent
978ffc21ac
commit
eb97eb4a7a
@ -7,9 +7,12 @@
|
|||||||
- role: backup
|
- role: backup
|
||||||
vars:
|
vars:
|
||||||
backup_s3backup_list_extra:
|
backup_s3backup_list_extra:
|
||||||
- /opt/minecraft/valhelsia/world
|
- /opt/minecraft/valhelsia
|
||||||
- /opt/minecraft/vanilla
|
- /opt/minecraft/vanilla
|
||||||
- /opt/factorio
|
- /opt/factorio
|
||||||
|
backup_s3backup_exclude_list_extra:
|
||||||
|
- /opt/minecraft/valhelsia/backups
|
||||||
|
- /opt/minecraft/vanilla/backups
|
||||||
become: yes
|
become: yes
|
||||||
tags: [ backup ]
|
tags: [ backup ]
|
||||||
- role: minecraft
|
- role: minecraft
|
||||||
|
@ -19,6 +19,9 @@ backup_s3_aws_secret_access_key: REPLACEME
|
|||||||
# 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: []
|
||||||
backup_s3backup_list_extra: []
|
backup_s3backup_list_extra: []
|
||||||
|
# List of files/directories to --exclude
|
||||||
|
backup_s3backup_exclude_list: []
|
||||||
|
backup_s3backup_exclude_list_extra: []
|
||||||
# Arguments to pass to tar
|
# Arguments to pass to tar
|
||||||
# Note that passing f here is probably a bad idea
|
# Note that passing f here is probably a bad idea
|
||||||
backup_s3backup_tar_args: cz
|
backup_s3backup_tar_args: cz
|
||||||
|
@ -52,6 +52,12 @@ for dir in "${DIRS[@]}"; do
|
|||||||
done
|
done
|
||||||
echo "Will upload resultant backup to {{ backup_s3_bucket }}"
|
echo "Will upload resultant backup to {{ backup_s3_bucket }}"
|
||||||
nice -n 10 tar {{ backup_s3backup_tar_args }}{{ backup_s3backup_tar_args_extra }} "${DIRS[@]}" \
|
nice -n 10 tar {{ backup_s3backup_tar_args }}{{ backup_s3backup_tar_args_extra }} "${DIRS[@]}" \
|
||||||
|
{% for item in backup_s3backup_exclude_list %}
|
||||||
|
--exclude "{{ item }}" \
|
||||||
|
{% endfor %}
|
||||||
|
{% for item in backup_s3backup_exclude_list_extra %}
|
||||||
|
--exclude "{{ item }}" \
|
||||||
|
{% endfor %}
|
||||||
| aws s3 cp - \
|
| aws s3 cp - \
|
||||||
"s3://{{ backup_s3_bucket }}/{{ inventory_hostname_short }}/$(date "+{{ backup_dateformat }}").tar.gz"
|
"s3://{{ backup_s3_bucket }}/{{ inventory_hostname_short }}/$(date "+{{ backup_dateformat }}").tar.gz"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user