[oe-commits] Jonathan Liu : resolvconf: specify configuration for systemd-tmpfiles --update

git at git.openembedded.org git at git.openembedded.org
Fri Sep 6 21:59:31 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 24f9280c35001ff6c1d5a263fab41ae21a8056f3
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=24f9280c35001ff6c1d5a263fab41ae21a8056f3

Author: Jonathan Liu <net147 at gmail.com>
Date:   Thu Sep  5 15:24:39 2013 +1000

resolvconf: specify configuration for systemd-tmpfiles --update

Running systemd-tmpfiles --update without specifying a configuration
file results in all tmpfiles.d configuration files being processed.

/usr/lib/tmpfiles.d/systemd.conf creates /run/nologin on boot to
prevent non-root users from logging in while the system is booting.
If systemd-tmpfiles --update is run after the system has started,
it will still create /run/nologin which would prevent non-root users
from logging in with the message "System is booting up.".

Signed-off-by: Jonathan Liu <net147 at gmail.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 .../resolvconf/resolvconf_1.74.bb                  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-connectivity/resolvconf/resolvconf_1.74.bb b/meta/recipes-connectivity/resolvconf/resolvconf_1.74.bb
index eb1ce8d..5897e40 100644
--- a/meta/recipes-connectivity/resolvconf/resolvconf_1.74.bb
+++ b/meta/recipes-connectivity/resolvconf/resolvconf_1.74.bb
@@ -45,7 +45,7 @@ do_install () {
 pkg_postinst_${PN} () {
 	if [ -z "$D" ]; then
 		if command -v systemd-tmpfiles >/dev/null; then
-			systemd-tmpfiles --create
+			systemd-tmpfiles --create ${sysconfdir}/tmpfiles.d/resolvconf.conf
 		elif [ -e ${sysconfdir}/init.d/populate-volatile.sh ]; then
 			${sysconfdir}/init.d/populate-volatile.sh update
 		fi



More information about the Openembedded-commits mailing list