diff options
-rw-r--r-- | config/system/crypted-backups | 44 |
1 files changed, 12 insertions, 32 deletions
diff --git a/config/system/crypted-backups b/config/system/crypted-backups index a2bfe85..e6e28b2 100644 --- a/config/system/crypted-backups +++ b/config/system/crypted-backups @@ -1,4 +1,4 @@ -# Settings for /usr/lib/systemd/system/scripts/{backup-*,cleanup-backup} scripts +# Settings for system-wide scripts in /usr/lib/systemd/system/scripts/{backup-*,cleanup-backup}. # The following environment variables will be made available through a systemd unit file. # Note: No variable expansion! # Read more on "EnvironmentFile" and "Environment" in the following systemd man page: man 5 systemd.exec @@ -25,6 +25,17 @@ tmp="/tmp/" gpg_public_key="" +## Cleanup settings + +# Deletes files that are older than the given time (in days) +# Set time in days. Defaults to 90 +older_than=90 +# Set the folder to cleanup. +# Mind a trailing slash! +# Example: cleanup_folder="/some/folder/to/cleanup/" +cleanup_folder="" + + ## System backup settings # /var/cache/aura/states @@ -123,34 +134,3 @@ website_folder_source="" # Mind a trailing slash! # Example: websites_folder_destination="/some/place/to/backup/websites/to/" website_folder_destination="" - - -## User backup settings - -# ~/.mozilla/firefox/<profile> -# Will backup every folder of given user beneath ~/.mozilla/firefox/ separately (ignoring Crash*, profiles.ini, *-backup). -# You don't need to change the source path. -firefox_folder_source=".mozilla/firefox/" -# Set a backup destination for firefox -# Mind a trailing slash! -# Example: firefox_folder_destination="/some/place/to/backup/firefox/to/" -firefox_folder_destination="" - -# Settings for ~/.thunderbird/<profile> backup -# Will backup every folder of given user beneath ~/.thunderbird/ separately (ignoring Crash*, profiles.ini, *-backup). -# You don't need to change the source path. -thunderbird_folder_source=".thunderbird/" -# Set a backup destination for thunderbird -# Mind a trailing slash! -# Example: thunderbird_folder_destination="/some/place/to/backup/thunderbird/to/" -thunderbird_folder_destination="" - - -## Cleanup settings -# Deletes files that are older than the given time (in days) -# Set time in days. Defaults to 90 -older_than=90 -# Set the folder to cleanup. -# Mind a trailing slash! -# Example: cleanup_folder="/some/folder/to/cleanup/" -cleanup_folder="" |