summaryrefslogtreecommitdiff
path: root/units
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2010-08-17 14:01:12 +0200
committerKay Sievers <kay.sievers@vrfy.org>2010-08-17 14:01:12 +0200
commit322198005ace1aca0d504726f2444c84bd8b5430 (patch)
tree0b305fcf8812418c2f95707bb43df88c83609937 /units
parent8acb3d88d318954109ffcc9e9feaf636236a0f8f (diff)
units: add missing After= for var-run.service, var-lock.service
Diffstat (limited to 'units')
-rw-r--r--units/var-lock.mount3
-rw-r--r--units/var-lock.service1
-rw-r--r--units/var-run.mount3
-rw-r--r--units/var-run.service3
4 files changed, 9 insertions, 1 deletions
diff --git a/units/var-lock.mount b/units/var-lock.mount
index f14ea94d0..17c4f522a 100644
--- a/units/var-lock.mount
+++ b/units/var-lock.mount
@@ -14,3 +14,6 @@ What=tmpfs
Where=/var/lock
Type=tmpfs
Options=mode=775,gid=lock
+
+[Install]
+WantedBy=local-fs.target
diff --git a/units/var-lock.service b/units/var-lock.service
index b148b5dff..d382958ae 100644
--- a/units/var-lock.service
+++ b/units/var-lock.service
@@ -9,6 +9,7 @@
Description=Lock Directory
DefaultDependencies=no
Requires=var-lock.mount
+After=var-run.mount
Before=local-fs.target
[Service]
diff --git a/units/var-run.mount b/units/var-run.mount
index f78628953..90dfe0eda 100644
--- a/units/var-run.mount
+++ b/units/var-run.mount
@@ -14,3 +14,6 @@ What=tmpfs
Where=/var/run
Type=tmpfs
Options=mode=755
+
+[Install]
+WantedBy=local-fs.target
diff --git a/units/var-run.service b/units/var-run.service
index 10e2b0525..a958ff7d1 100644
--- a/units/var-run.service
+++ b/units/var-run.service
@@ -9,12 +9,13 @@
Description=Runtime Directory
DefaultDependencies=no
Requires=var-run.mount
+After=var-run.mount
Before=local-fs.target
[Service]
Type=oneshot
ValidNoProcess=yes
-ExecStart=/bin/touch /var/run/utmp ; /bin/chown root:utmp /var/run/utmp
+ExecStart=/bin/touch /var/run/utmp ; /bin/chmod 0664 /var/run/utmp ; /bin/chown root:utmp /var/run/utmp
[Install]
WantedBy=local-fs.target