nixos/ceph: create /etc/ceph and /var/lib/ceph via tmpfiles

We seem to be relying on those being present during runtime anyways.
This commit is contained in:
Florian Klink
2019-11-09 15:27:45 +01:00
parent 8e639f142f
commit 64c9c08302
3 changed files with 6 additions and 16 deletions
@@ -401,7 +401,9 @@ in
mkMerge targets;
systemd.tmpfiles.rules = [
"d /etc/ceph - ceph ceph - -"
"d /run/ceph 0770 ceph ceph -"
"d /var/lib/ceph - ceph ceph - -"
];
};
}