18 lines
480 B
Bash
18 lines
480 B
Bash
#! /bin/bash
|
|
#
|
|
# s3backup-analyze.sh
|
|
# A companion script to s3backup to analyze disk usage for backups
|
|
|
|
# NOTICE: DO NOT MODIFY THIS FILE
|
|
# Any changes made will be clobbered by Ansible
|
|
# Please make any configuration changes in the main repo
|
|
|
|
exec ncdu \
|
|
{% for item in backup_s3backup_list + backup_s3backup_list_extra %}
|
|
"{{ item }}" \
|
|
{% endfor %}
|
|
{% for item in backup_s3backup_exclude_list + backup_s3backup_exclude_list_extra %}
|
|
--exclude "{{ item }}" \
|
|
{% endfor %}
|
|
-r
|