Files
simple_backup/simple_backup/simple_backup.conf
T

23 lines
706 B
Plaintext
Raw Normal View History

2023-05-28 21:30:40 +02:00
# Example config file for simple_backup
2023-05-05 19:03:23 +02:00
2023-05-28 21:30:40 +02:00
[backup]
2023-06-04 12:09:30 +02:00
# Files and directories to backup. Multiple items can be separated using a comma (','). It is possible to use wildcards (i.e. '*' to match multiple characters and '~' for the user's home directory).
2024-09-28 09:47:33 +02:00
inputs=/home/user
2023-05-05 19:03:23 +02:00
2023-06-04 12:09:30 +02:00
# Output directory.
2023-05-05 19:03:23 +02:00
backup_dir=/media/Backup
2023-06-04 12:09:30 +02:00
# Files, directories and patterns to exclude from the backup. Multiple items can be separated using a comma.
exclude=*.bak
2023-05-05 19:03:23 +02:00
2023-06-04 12:09:30 +02:00
# Number of old backups (i.e. excluding the one that's being created) to keep (use -1 to keep all)
2023-05-28 21:30:40 +02:00
keep=-1
# Uncomment the following section to enable backup to remote server through ssh
2023-06-04 16:53:22 +02:00
# [server]
2023-06-20 17:36:12 +02:00
# ssh_host=
# ssh_user=
2023-06-04 16:53:22 +02:00
# ssh_keyfile=
2023-06-15 23:12:19 +02:00
# remote_sudo=
2023-06-16 16:18:12 +02:00
# numeric_ids=