fix(tmpfiles rule): do not remove the contents of the directory

This commit is contained in:
Ryan Yin
2024-11-25 09:22:25 +08:00
parent 595f76e120
commit 1cd6c0b124
3 changed files with 3 additions and 3 deletions

View File

@@ -75,7 +75,7 @@ in {
systemd.tmpfiles.rules = [
"L+ /opt/cni/bin - - - - /var/lib/rancher/k3s/data/current/bin"
# If you have disabled flannel, you will have to create the directory via a tmpfiles rule
"D /var/lib/rancher/k3s/agent/etc/cni/net.d 0751 root root - -"
"d /var/lib/rancher/k3s/agent/etc/cni/net.d 0751 root root - -"
# Link the CNI config directory
"L+ /etc/cni/net.d - - - - /var/lib/rancher/k3s/agent/etc/cni/net.d"
];