From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1ScVOM-0000ka-WB for garchives@archives.gentoo.org; Thu, 07 Jun 2012 05:36:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10F0BE065E; Thu, 7 Jun 2012 05:36:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D2D96E065E for ; Thu, 7 Jun 2012 05:36:10 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F43D1B4017 for ; Thu, 7 Jun 2012 05:36:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id DB068E5404 for ; Thu, 7 Jun 2012 05:36:08 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1339045940.ae7cbd910a8d95fcf47ea99e19976e3398f6d947.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: net/ X-VCS-Repository: proj/openrc X-VCS-Files: net/udhcpc.sh X-VCS-Directories: net/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: ae7cbd910a8d95fcf47ea99e19976e3398f6d947 X-VCS-Branch: master Date: Thu, 7 Jun 2012 05:36:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 68a9fd16-59ad-4868-a58a-638ad9b67747 X-Archives-Hash: 4d2f6bb47c34f58c2e1601b14377ae23 commit: ae7cbd910a8d95fcf47ea99e19976e3398f6d947 Author: William Hubbs gentoo org> AuthorDate: Thu Jun 7 05:12:20 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Jun 7 05:12:20 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3Dae7cbd91 net/udhcpc: use -x hostname:NAME option instead of -h name reported-by: bug mejor.pl X-Gentoo-Bug: 417617 X-Gentoo-Bug-URL: https://bugs.gentoo.org/417617 --- net/udhcpc.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/udhcpc.sh b/net/udhcpc.sh index 4eb0b51..d001867 100644 --- a/net/udhcpc.sh +++ b/net/udhcpc.sh @@ -66,7 +66,7 @@ udhcpc_start() if ${sendhost}; then local hname=3D"$(hostname)" if [ "${hname}" !=3D "(none)" ] && [ "${hname}" !=3D "localhost" ]; = then - args=3D"${args} --hostname=3D'${hname}'" + args=3D"${args} -x hostname:'${hname}'" fi fi ;;