Document potential interactions between systemd security settings and the ZFS, LVM, and Btrfs hooks (#1192, #1163).
This commit is contained in:
parent
50a062611e
commit
a77de447d4
5 changed files with 36 additions and 2 deletions
2
NEWS
2
NEWS
|
|
@ -2,6 +2,8 @@
|
|||
* #1192: Fix for over-aggressive deduplication of source directories that contain the borgmatic
|
||||
runtime directory, potentially resulting in data loss (data not getting backed up) when
|
||||
snapshotting these source directories.
|
||||
* #1192, #1163: Document potential interactions between security settings in borgmatic's sample
|
||||
systemd service file and the ZFS, LVM, and Btrfs hooks.
|
||||
* #1194: Fix for an incorrect diff command shown when running the "generate config" action with a
|
||||
source configuration file.
|
||||
* #1195: Fix a regression in the ZFS, LVM, and Btrfs hooks in which snapshotted paths ignored
|
||||
|
|
|
|||
|
|
@ -92,6 +92,15 @@ it looks up file paths in its cache—it constructs the cache key with the path
|
|||
full absolute source path (which changes).
|
||||
|
||||
|
||||
## systemd settings
|
||||
|
||||
If you're using [systemd to run
|
||||
borgmatic](https://torsion.org/borgmatic/how-to/set-up-backups/#systemd), you
|
||||
may need to disable particular security settings like `CapabilityBoundingSet` to
|
||||
allow the Btrfs feature to work. See the comments in the sample systemd service
|
||||
file for details.
|
||||
|
||||
|
||||
## Full configuration
|
||||
|
||||
```yaml
|
||||
|
|
|
|||
|
|
@ -114,6 +114,15 @@ the cache key with the path *as it's seen in the archive* (which is consistent
|
|||
across runs) rather than the full absolute source path (which can change).
|
||||
|
||||
|
||||
## systemd settings
|
||||
|
||||
If you're using [systemd to run
|
||||
borgmatic](https://torsion.org/borgmatic/how-to/set-up-backups/#systemd), you
|
||||
may need to disable particular security settings like `ProtectKernelModules`,
|
||||
`CapabilityBoundingSet`, and/or `PrivateDevices` to allow the LVM feature to
|
||||
work. See the comments in the sample systemd service file for details.
|
||||
|
||||
|
||||
## Full configuration
|
||||
|
||||
```yaml
|
||||
|
|
|
|||
|
|
@ -103,6 +103,15 @@ the cache key with the path *as it's seen in the archive* (which is consistent
|
|||
across runs) rather than the full absolute source path (which can change).
|
||||
|
||||
|
||||
## systemd settings
|
||||
|
||||
If you're using [systemd to run
|
||||
borgmatic](https://torsion.org/borgmatic/how-to/set-up-backups/#systemd), you
|
||||
may need to disable particular security settings like `CapabilityBoundingSet`
|
||||
and/or `PrivateDevices` to allow the ZFS feature to work. See the comments in
|
||||
the sample systemd service file for details.
|
||||
|
||||
|
||||
## Full configuration
|
||||
|
||||
```yaml
|
||||
|
|
|
|||
|
|
@ -26,13 +26,16 @@ LockPersonality=true
|
|||
# But you can try setting it to "yes" for improved security if you don't use those features.
|
||||
MemoryDenyWriteExecute=no
|
||||
NoNewPrivileges=yes
|
||||
# Filesystem hooks like ZFS may not work unless PrivateDevices is disabled.
|
||||
# Filesystem hooks like ZFS and LVM may not work unless PrivateDevices is disabled.
|
||||
PrivateDevices=yes
|
||||
PrivateTmp=yes
|
||||
ProtectClock=yes
|
||||
ProtectControlGroups=yes
|
||||
ProtectHostname=yes
|
||||
ProtectKernelLogs=yes
|
||||
# You may need to disable this if you're using the LVM hook. But an alternative
|
||||
# might be to leave this enabled and preload the necessary kernel modules like
|
||||
# "dm_snapshot" at boot, so this service doesn't need to load them on demand.
|
||||
ProtectKernelModules=yes
|
||||
ProtectKernelTunables=yes
|
||||
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 AF_NETLINK
|
||||
|
|
@ -54,7 +57,9 @@ ProtectSystem=full
|
|||
# BindReadOnlyPaths=-/root/.ssh
|
||||
|
||||
# May interfere with running external programs within borgmatic hooks. This
|
||||
# includes, for instance, programs to snapshot filesystems (e.g. ZFS).
|
||||
# includes, for instance, programs to snapshot filesystems (e.g. ZFS, LVM, and
|
||||
# Btrfs). But rather than commenting this out entirely, one workaround may be to
|
||||
# add "CAP_SYS_ADMIN".
|
||||
CapabilityBoundingSet=CAP_DAC_READ_SEARCH CAP_NET_RAW
|
||||
|
||||
# Lower CPU and I/O priority.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue