diff options
| author | Ivan Petkov <ivanppetkov@gmail.com> | 2023-11-04 16:37:57 -0700 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-06 09:16:46 +0000 |
| commit | eec6d149dd88fe3c232408beed8093a635d6bf5c (patch) | |
| tree | ec70a508cf8aaa2b149ed8eaf2aeaf4cd1d7ad83 | |
| parent | Merge pull request #265732 from NixOS/backport-265181-to-release-23.05 (diff) | |
| download | nixpkgs-origin/backport-265543-to-release-23.05.tar.gz | |
syncoid: disable PrivateUsers in systemd unitorigin/backport-265543-to-release-23.05
* leaving PrivateUsers=true appears to break when using zfs-2.2.0
(cherry picked from commit 15ebe5b7c0d8b65568854b26ae068beaf81eda89)
| -rw-r--r-- | nixos/modules/services/backup/syncoid.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/backup/syncoid.nix b/nixos/modules/services/backup/syncoid.nix index 0f375455e7ed..1a1df38617b5 100644 --- a/nixos/modules/services/backup/syncoid.nix +++ b/nixos/modules/services/backup/syncoid.nix @@ -369,7 +369,7 @@ in PrivateDevices = true; PrivateMounts = true; PrivateNetwork = mkDefault false; - PrivateUsers = true; + PrivateUsers = false; # Enabling this breaks on zfs-2.2.0 ProtectClock = true; ProtectControlGroups = true; ProtectHome = true; |
