* [PATCH v2] resolvconf: remove /var/volatile/run/resolvconf/interface from package
@ 2013-05-24 0:10 Jonathan Liu
2013-05-26 1:40 ` Jonathan Liu
0 siblings, 1 reply; 2+ messages in thread
From: Jonathan Liu @ 2013-05-24 0:10 UTC (permalink / raw)
To: openembedded-core
- Remove /etc/resolvconf/run/interface from package as it actually uses
/etc/resolvconf/run/interface
- Create /var/run/resolvconf/interface on startup using
populate-volatiles.sh and tmpfiles.d for systemd
- Create symbolic link from /etc/resolvconf/run to /var/run/resolvconf
Signed-off-by: Jonathan Liu <net147@gmail.com>
---
meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb b/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb
index d342a6e..78de492 100644
--- a/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb
+++ b/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb
@@ -23,7 +23,15 @@ do_compile () {
}
do_install () {
- install -d ${D}${sysconfdir} ${D}${base_sbindir} ${D}${localstatedir}/volatile/run/resolvconf/interface
+ install -d ${D}${sysconfdir}/default/volatiles
+ echo "d root root 0755 ${localstatedir}/run/${P}/interface none" \
+ > ${D}${sysconfdir}/default/volatiles/99_resolvconf
+ if ${@base_contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
+ echo "d /run/${P}/interface - - - -" \
+ > ${D}${sysconfdir}/tmpfiles.d/resolvconf.conf
+ fi
+ ln -snf ${localstatedir}/run/${P} ${D}${sysconfdir}/${P}/run
+ install -d ${D}${sysconfdir} ${D}${base_sbindir}
install -d ${D}${mandir}/man8 ${D}${docdir}/${P}
cp -pPR etc/* ${D}${sysconfdir}/
chown -R root:root ${D}${sysconfdir}/
--
1.8.2.3
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v2] resolvconf: remove /var/volatile/run/resolvconf/interface from package
2013-05-24 0:10 [PATCH v2] resolvconf: remove /var/volatile/run/resolvconf/interface from package Jonathan Liu
@ 2013-05-26 1:40 ` Jonathan Liu
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Liu @ 2013-05-26 1:40 UTC (permalink / raw)
To: Jonathan Liu; +Cc: openembedded-core
On 24/05/2013 10:10 AM, Jonathan Liu wrote:
> - Remove /etc/resolvconf/run/interface from package as it actually uses
> /etc/resolvconf/run/interface
> - Create /var/run/resolvconf/interface on startup using
> populate-volatiles.sh and tmpfiles.d for systemd
> - Create symbolic link from /etc/resolvconf/run to /var/run/resolvconf
>
> Signed-off-by: Jonathan Liu <net147@gmail.com>
> ---
> meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb b/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb
> index d342a6e..78de492 100644
> --- a/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb
> +++ b/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb
> @@ -23,7 +23,15 @@ do_compile () {
> }
>
> do_install () {
> - install -d ${D}${sysconfdir} ${D}${base_sbindir} ${D}${localstatedir}/volatile/run/resolvconf/interface
> + install -d ${D}${sysconfdir}/default/volatiles
> + echo "d root root 0755 ${localstatedir}/run/${P}/interface none" \
> + > ${D}${sysconfdir}/default/volatiles/99_resolvconf
> + if ${@base_contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
Looks like I forgot to create ${D}${sysconfdir}/tmpfiles.d directory
here. Fixed in V3 patch.
Regards,
Jonathan
> + echo "d /run/${P}/interface - - - -" \
> + > ${D}${sysconfdir}/tmpfiles.d/resolvconf.conf
> + fi
> + ln -snf ${localstatedir}/run/${P} ${D}${sysconfdir}/${P}/run
> + install -d ${D}${sysconfdir} ${D}${base_sbindir}
> install -d ${D}${mandir}/man8 ${D}${docdir}/${P}
> cp -pPR etc/* ${D}${sysconfdir}/
> chown -R root:root ${D}${sysconfdir}/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-05-26 1:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-24 0:10 [PATCH v2] resolvconf: remove /var/volatile/run/resolvconf/interface from package Jonathan Liu
2013-05-26 1:40 ` Jonathan Liu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox