table of contents
- Tumbleweed 0.13.0-3.2
- Leap-16.0
| SNAPPER-BACKUP-CON(5) | Filesystem Snapshot Management | SNAPPER-BACKUP-CON(5) |
NAME¶
snapper-backup-configs - Configuration files for snapper backup configs
DESCRIPTION¶
Each file /etc/snapper/backup-configs/*.json describes a snapper backup config.
The file uses JSON syntax containing a single object with key-value pairs.
KEY VALUE PAIRS¶
The following is a list of keys that can be present in the configuration file.
config
target-mode
source-path
target-path
automatic
ssh-host
ssh-port
ssh-user
ssh-identity
send-compressed-data
send-options
Per default snbk automatically adds --proto and --compressed-data iff supported by both the source and target.
receive-options
target-btrfs-bin
target-ls-bin
target-mkdir-bin
target-rm-bin
target-rmdir-bin
EXAMPLES¶
An example backup config for local backups:
{
"config": "root",
"target-mode": "local",
"automatic": true,
"source-path": "/",
"target-path": "/backups/root"
}
An example backup config for remote backups via ssh-push:
{
"config": "root",
"target-mode": "ssh-push",
"automatic": false,
"source-path": "/",
"target-path": "/backups/eberich/root",
"ssh-host": "backups.example.com",
"ssh-identity": "/etc/snapper/certs/id_ecdsa"
}
HOMEPAGE¶
AUTHORS¶
Arvin Schnell <aschnell@suse.com>
SEE ALSO¶
| 2025-10-13 | 0.13.0 |