From: Bastian Dehn Date: Tue, 19 May 2026 15:02:40 +0000 (+0200) Subject: fix empty exmple config X-Git-Tag: v1.0.1^2~2 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=0b2c84a07b5f55c5c50ee59c926ddacc68da74e8;p=simple-backup.git fix empty exmple config --- diff --git a/readme.md b/readme.md index 20d983a..213de5f 100644 --- a/readme.md +++ b/readme.md @@ -25,7 +25,7 @@ machines: - /etc - /home -# the next block need backup mount for mount luks devices +# the next block need backupmount for mount luks devices backup_volume: luks-crypt-volume media: day: diff --git a/src/config-example.yaml b/src/config-example.yaml index e69de29..12db624 100644 --- a/src/config-example.yaml +++ b/src/config-example.yaml @@ -0,0 +1,28 @@ +backup_path: /images/backup +backup_name: backup +backup_count: 15 + +machines: + testpc: + remote_user: backupuser + host: www.example.com + port: 22 + pathes: + - /etc + - /home + +# the next block need backupmount for mount luks devices +backup_volume: luks-crypt-volume +media: + day: + device: /dev/path/to/disk + key: /path/to/luks-key-file + partition: /dev/path/to/partition + week: + device: /dev/path/to/disk + key: /path/to/luks-key-file + partition: /dev/path/to/partition + month: + device: /dev/path/to/disk + key: /path/to/luks-key-file + partition: /dev/path/to/partition \ No newline at end of file