diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2012-10-31 10:53:37 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2012-10-31 17:33:14 -0500 |
commit | 1a8cd5ff9ded16dd071624fa056712678b2cda6a (patch) | |
tree | 091a881aa2b99fa59a39299a8cd1668b1aef2640 /conf.d/Makefile | |
parent | eff07c48b7a2266a4c82a202960856b4f39936d0 (diff) |
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 'conf.d/Makefile')
-rw-r--r-- | conf.d/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.d/Makefile b/conf.d/Makefile index 1f289672..24db5891 100644 --- a/conf.d/Makefile +++ b/conf.d/Makefile @@ -1,5 +1,5 @@ DIR= ${CONFDIR} -CONF= bootmisc fsck hostname localmount netmount urandom tmpfilesd \ +CONF= bootmisc fsck hostname localmount netmount urandom tmpfiles \ ${CONF-${OS}} ifeq (${MKNET},) |