chiark / gitweb /
units: add var-run.service var-lock.service
authorKay Sievers <kay.sievers@vrfy.org>
Tue, 17 Aug 2010 08:17:42 +0000 (10:17 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Tue, 17 Aug 2010 08:17:42 +0000 (10:17 +0200)
Makefile.am
units/var-lock.mount
units/var-lock.service [new file with mode: 0644]
units/var-run.mount
units/var-run.service [new file with mode: 0644]

index de85b7979021ae080657b3f05f9925dd48a3be21..f187b4b9c68a1474929ea86070b562e89fb62df9 100644 (file)
@@ -152,7 +152,9 @@ dist_systemunit_DATA = \
        units/sys-kernel-security.automount \
        units/sys-kernel-security.mount \
        units/var-lock.mount \
+       units/var-lock.service \
        units/var-run.mount \
+       units/var-run.service \
        units/printer.target \
        units/bluetooth.target \
        units/smartcard.target
index 17c4f522ad7058c7b6ab81652ec90ca5a109e884..f14ea94d0436d4550a7cba7d90d184aae92e0ab2 100644 (file)
@@ -14,6 +14,3 @@ 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
new file mode 100644 (file)
index 0000000..b148b5d
--- /dev/null
@@ -0,0 +1,20 @@
+#  This file is part of systemd.
+#
+#  systemd is free software; you can redistribute it and/or modify it
+#  under the terms of the GNU General Public License as published by
+#  the Free Software Foundation; either version 2 of the License, or
+#  (at your option) any later version.
+
+[Unit]
+Description=Lock Directory
+DefaultDependencies=no
+Requires=var-lock.mount
+Before=local-fs.target
+
+[Service]
+Type=oneshot
+ValidNoProcess=yes
+ExecStart=/bin/mkdir -p /var/lock/subsys
+
+[Install]
+WantedBy=local-fs.target
index 90dfe0edaa0a1c0327efa63cf70e6a0c2fddc1fe..f7862895366987880e747d864ccf819bdf0db841 100644 (file)
@@ -14,6 +14,3 @@ 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
new file mode 100644 (file)
index 0000000..10e2b05
--- /dev/null
@@ -0,0 +1,20 @@
+#  This file is part of systemd.
+#
+#  systemd is free software; you can redistribute it and/or modify it
+#  under the terms of the GNU General Public License as published by
+#  the Free Software Foundation; either version 2 of the License, or
+#  (at your option) any later version.
+
+[Unit]
+Description=Runtime Directory
+DefaultDependencies=no
+Requires=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
+
+[Install]
+WantedBy=local-fs.target