summaryrefslogtreecommitdiff
path: root/init.d
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2012-10-31 10:53:37 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2012-10-31 17:33:14 -0500
commit1a8cd5ff9ded16dd071624fa056712678b2cda6a (patch)
tree091a881aa2b99fa59a39299a8cd1668b1aef2640 /init.d
parenteff07c48b7a2266a4c82a202960856b4f39936d0 (diff)
downloadopenrc-1a8cd5ff9ded16dd071624fa056712678b2cda6a.tar.gz
openrc-1a8cd5ff9ded16dd071624fa056712678b2cda6a.tar.bz2
openrc-1a8cd5ff9ded16dd071624fa056712678b2cda6a.tar.xz
Tmpfiles: create and delete entries once in the boot runlevel.
Initially, we were creating tmpfiles entries in the sysinit runlevel and again in the boot runlevel. Systemd runs the --create and --remove options in one service called systemd-tmpfiles-setup after the local file systems are mounted. Now we have a service called tmpfiles.setup which emulates this. This also closes the bug mentioned below, since we were originally writing to files that were on read-only file systems and that were not available. Reported-by: <devurandom@gmx.net> X-Gentoo-Bug: 439012 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=439012
Diffstat (limited to 'init.d')
-rw-r--r--init.d/.gitignore3
-rw-r--r--init.d/Makefile3
-rw-r--r--init.d/tmpfiles.setup.in (renamed from init.d/tmpfilesd.boot.in)6
-rw-r--r--init.d/tmpfilesd.sysinit.in20
4 files changed, 5 insertions, 27 deletions
diff --git a/init.d/.gitignore b/init.d/.gitignore
index 515348b..c42cd77 100644
--- a/init.d/.gitignore
+++ b/init.d/.gitignore
@@ -41,5 +41,4 @@ syslogd
termencoding
ttys
wscons
-tmpfilesd.boot
-tmpfilesd.sysinit
+tmpfiles.setup
diff --git a/init.d/Makefile b/init.d/Makefile
index 54e5fd5..04e09a7 100644
--- a/init.d/Makefile
+++ b/init.d/Makefile
@@ -1,8 +1,7 @@
DIR= ${INITDIR}
SRCS= bootmisc.in fsck.in hostname.in local.in localmount.in netmount.in \
root.in savecache.in swap.in swapfiles.in \
- tmpfilesd.boot.in tmpfilesd.sysinit.in \
- swclock.in sysctl.in urandom.in ${SRCS-${OS}}
+ tmpfiles.setup.in swclock.in sysctl.in urandom.in ${SRCS-${OS}}
BIN= ${OBJS}
# Build our old net foo or not
diff --git a/init.d/tmpfilesd.boot.in b/init.d/tmpfiles.setup.in
index 471c128..a3ecd31 100644
--- a/init.d/tmpfilesd.boot.in
+++ b/init.d/tmpfiles.setup.in
@@ -2,7 +2,7 @@
# Copyright 1999-2012 Gentoo Foundation
# Released under the 2-clause BSD license.
-description="Create tmpfiles.d entries (boot)"
+description="set up tmpfiles.d entries"
depend()
{
@@ -11,8 +11,8 @@ depend()
start()
{
- ebegin "Creating ${description#Create }"
- @LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
+ ebegin "setting up tmpfiles.d entries"
+ @LIBEXECDIR@/sh/tmpfiles.sh --create --remove ${tmpfiles_opts}
eend $?
return 0
}
diff --git a/init.d/tmpfilesd.sysinit.in b/init.d/tmpfilesd.sysinit.in
deleted file mode 100644
index 303a1cf..0000000
--- a/init.d/tmpfilesd.sysinit.in
+++ /dev/null
@@ -1,20 +0,0 @@
-#!@PREFIX@/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
-# Released under the 2-clause BSD license.
-
-description="Create tmpfiles.d entries (sysinit)"
-
-depend()
-{
- # Convert to 'need dev' when the new udev is ready, for OpenRC 0.11
- #need dev-mount
- use dev
-}
-
-start()
-{
- ebegin "Creating ${description#Create }"
- @LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
- eend $?
- return 0
-}