All of lore.kernel.org
 help / color / mirror / Atom feed
From: Martin Jansa <martin.jansa@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [PATCH][meta-networking] ypbind-mt: set path of ypdomainname in ypbind script
Date: Wed, 8 Jul 2015 12:43:56 +0200	[thread overview]
Message-ID: <20150708104356.GE2398@jama> (raw)
In-Reply-To: <1436325674-22267-1-git-send-email-jian.liu@windriver.com>

[-- Attachment #1: Type: text/plain, Size: 2696 bytes --]

On Wed, Jul 08, 2015 at 11:21:14AM +0800, Jian Liu wrote:
> The script ypbind will cause error if using ypdomainname command
> provided by busybox. So add RDEPENDCY on yp-tools and change
> the path of ypdomainname.

Missing meta-networking/ prefix

> Signed-off-by: Jian Liu <jian.liu@windriver.com>
> ---
>  recipes-support/nis/files/ypbind-yocto.init | 11 ++++++-----
>  recipes-support/nis/ypbind-mt_1.36.bb       |  1 +
>  2 files changed, 7 insertions(+), 5 deletions(-)
> 
> diff --git a/recipes-support/nis/files/ypbind-yocto.init b/recipes-support/nis/files/ypbind-yocto.init
> index da533a1..f97a3e1 100644
> --- a/recipes-support/nis/files/ypbind-yocto.init
> +++ b/recipes-support/nis/files/ypbind-yocto.init
> @@ -26,6 +26,7 @@
>  
>  YPBIND_BIN=/usr/sbin/ypbind
>  pidfile=/var/run/ypbind.pid
> +YPDOMAINNAME_bin=/usr/bin/ypdomainname
>  
>  [ -f /etc/default/ypbind ] && . /etc/default/ypbind
>  
> @@ -34,14 +35,14 @@ case "$1" in
>  	echo -n "Starting ypbind"
>  	## If the domainname is not set, skip starting of ypbind
>  	## and return with "program not configured"
> -        /bin/ypdomainname &> /dev/null
> -        if [ $? -ne 0 -o -z "`/bin/ypdomainname 2>/dev/null`" ]; then
> +        $YPDOMAINNAME_bin &> /dev/null
> +        if [ $? -ne 0 -o -z "`$YPDOMAINNAME_bin 2>/dev/null`" ]; then
>             if [ -f /etc/defaultdomain ]; then
>               XDOMAINNAME=`cat /etc/defaultdomain`
> -             /bin/ypdomainname "$XDOMAINNAME"
> +             $YPDOMAINNAME_bin "$XDOMAINNAME"
>  	   fi
> -           /bin/ypdomainname &> /dev/null
> -           if [ $? -ne 0 -o -z "`/bin/ypdomainname 2>/dev/null`" ]; then
> +           $YPDOMAINNAME_bin &> /dev/null
> +           if [ $? -ne 0 -o -z "`$YPDOMAINNAME_bin 2>/dev/null`" ]; then
>  	     # Tell the user this has skipped
>  	     echo -n " . . . . . . . . . . No domainname set"
>               # service is not configured
> diff --git a/recipes-support/nis/ypbind-mt_1.36.bb b/recipes-support/nis/ypbind-mt_1.36.bb
> index 35ef16a..4fdef9f 100644
> --- a/recipes-support/nis/ypbind-mt_1.36.bb
> +++ b/recipes-support/nis/ypbind-mt_1.36.bb
> @@ -50,3 +50,4 @@ RPROVIDES_${PN} += "${PN}-systemd"
>  RREPLACES_${PN} += "${PN}-systemd"
>  RCONFLICTS_${PN} += "${PN}-systemd"
>  SYSTEMD_SERVICE_${PN} = "ypbind.service"
> +RDEPENDS_${PN} += "yp-tools"
> -- 
> 1.8.5.2.233.g932f7e4
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

  reply	other threads:[~2015-07-08 10:43 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-08  3:21 [PATCH][meta-networking] ypbind-mt: set path of ypdomainname in ypbind script Jian Liu
2015-07-08 10:43 ` Martin Jansa [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-11-02  6:05 wenzong.fan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150708104356.GE2398@jama \
    --to=martin.jansa@gmail.com \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.