summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2014-02-05 19:02:20 +0100
committerSimon Rettberg2014-02-05 19:02:20 +0100
commitf26318fba9018c55fe5844694aa7312289ecafe8 (patch)
tree52e368cc096ae9f0ee82559b19572404654be510
parent[smbclient] Make sure smb.conf exists (diff)
downloadtm-scripts-f26318fba9018c55fe5844694aa7312289ecafe8.tar.gz
tm-scripts-f26318fba9018c55fe5844694aa7312289ecafe8.tar.xz
tm-scripts-f26318fba9018c55fe5844694aa7312289ecafe8.zip
Fix tmpfiles.d files to use 'd' not 'D' for directories
'D' would delete all the contents if it exists, which would pretty much break things if you trigger systemd-tmpfiles in a running system. 'd' just created the directory if it doesn't exist yet.
-rw-r--r--remote/modules/dhcpc-busybox/data/etc/tmpfiles.d/udhcpc.conf2
-rw-r--r--remote/modules/kdm/data/etc/tmpfiles.d/kdm.conf2
-rw-r--r--remote/modules/nscd/data/etc/tmpfiles.d/nscd.conf2
-rw-r--r--remote/modules/pam/data/etc/tmpfiles.d/pipefs.conf2
-rw-r--r--remote/modules/plymouth/data/etc/tmpfiles.d/plymouth.conf2
-rw-r--r--remote/modules/sshd/data/etc/tmpfiles.d/sshd.conf2
-rw-r--r--remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/network.conf2
-rw-r--r--remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/run-lock.conf2
8 files changed, 8 insertions, 8 deletions
diff --git a/remote/modules/dhcpc-busybox/data/etc/tmpfiles.d/udhcpc.conf b/remote/modules/dhcpc-busybox/data/etc/tmpfiles.d/udhcpc.conf
index 3f83df3b..2b8ede25 100644
--- a/remote/modules/dhcpc-busybox/data/etc/tmpfiles.d/udhcpc.conf
+++ b/remote/modules/dhcpc-busybox/data/etc/tmpfiles.d/udhcpc.conf
@@ -1 +1 @@
-D /run/udhcpc 0755 root root
+d /run/udhcpc 0755 root root
diff --git a/remote/modules/kdm/data/etc/tmpfiles.d/kdm.conf b/remote/modules/kdm/data/etc/tmpfiles.d/kdm.conf
index 64f02ed3..9b726ba2 100644
--- a/remote/modules/kdm/data/etc/tmpfiles.d/kdm.conf
+++ b/remote/modules/kdm/data/etc/tmpfiles.d/kdm.conf
@@ -1,2 +1,2 @@
-D /var/run/kdm 0755 root root
+d /var/run/kdm 0755 root root
diff --git a/remote/modules/nscd/data/etc/tmpfiles.d/nscd.conf b/remote/modules/nscd/data/etc/tmpfiles.d/nscd.conf
index 57c16660..ba48981d 100644
--- a/remote/modules/nscd/data/etc/tmpfiles.d/nscd.conf
+++ b/remote/modules/nscd/data/etc/tmpfiles.d/nscd.conf
@@ -1 +1 @@
-D /var/run/nscd 0755 root root
+d /var/run/nscd 0755 root root
diff --git a/remote/modules/pam/data/etc/tmpfiles.d/pipefs.conf b/remote/modules/pam/data/etc/tmpfiles.d/pipefs.conf
index 7c422623..44e0924c 100644
--- a/remote/modules/pam/data/etc/tmpfiles.d/pipefs.conf
+++ b/remote/modules/pam/data/etc/tmpfiles.d/pipefs.conf
@@ -1,2 +1,2 @@
-D /var/run/rpc_pipefs 0755 root root
+d /var/run/rpc_pipefs 0755 root root
diff --git a/remote/modules/plymouth/data/etc/tmpfiles.d/plymouth.conf b/remote/modules/plymouth/data/etc/tmpfiles.d/plymouth.conf
index 211c61f6..9dfffcbe 100644
--- a/remote/modules/plymouth/data/etc/tmpfiles.d/plymouth.conf
+++ b/remote/modules/plymouth/data/etc/tmpfiles.d/plymouth.conf
@@ -1,2 +1,2 @@
-D /var/run/plymouth 0755 root root
+d /var/run/plymouth 0755 root root
diff --git a/remote/modules/sshd/data/etc/tmpfiles.d/sshd.conf b/remote/modules/sshd/data/etc/tmpfiles.d/sshd.conf
index d4aa9a67..77e6e459 100644
--- a/remote/modules/sshd/data/etc/tmpfiles.d/sshd.conf
+++ b/remote/modules/sshd/data/etc/tmpfiles.d/sshd.conf
@@ -1,2 +1,2 @@
-D /var/run/sshd 0755 root root
+d /var/run/sshd 0755 root root
diff --git a/remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/network.conf b/remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/network.conf
index dd67e785..346ecf7e 100644
--- a/remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/network.conf
+++ b/remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/network.conf
@@ -1 +1 @@
-D /run/network 0755 root root
+d /run/network 0755 root root
diff --git a/remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/run-lock.conf b/remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/run-lock.conf
index ef610bdc..a20cf5ce 100644
--- a/remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/run-lock.conf
+++ b/remote/rootfs/rootfs-stage32/data/etc/tmpfiles.d/run-lock.conf
@@ -1,2 +1,2 @@
-D /run/lock 1777 root root
+d /run/lock 1777 root root