Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 769E6106D7 for ; Wed, 24 Jul 2013 07:04:51 +0000 (UTC) Received: (qmail 13454 invoked by uid 500); 24 Jul 2013 07:04:51 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 13436 invoked by uid 500); 24 Jul 2013 07:04:51 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 13429 invoked by uid 99); 24 Jul 2013 07:04:51 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Jul 2013 07:04:51 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 0B1978B3215; Wed, 24 Jul 2013 07:04:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: yasker@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to b6f7dcc Date: Wed, 24 Jul 2013 07:04:51 +0000 (UTC) Updated Branches: refs/heads/master 2424dcf62 -> b6f7dccf0 CLOUDSTACK-3533: Fix missing parameter of dhcp_release Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b6f7dccf Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b6f7dccf Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b6f7dccf Branch: refs/heads/master Commit: b6f7dccf0bdd8b5bfd7374819b972ec98f5511b2 Parents: 2424dcf Author: Sheng Yang Authored: Wed Jul 24 00:03:14 2013 -0700 Committer: Sheng Yang Committed: Wed Jul 24 00:04:44 2013 -0700 ---------------------------------------------------------------------- patches/systemvm/debian/config/root/edithosts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b6f7dccf/patches/systemvm/debian/config/root/edithosts.sh ---------------------------------------------------------------------- diff --git a/patches/systemvm/debian/config/root/edithosts.sh b/patches/systemvm/debian/config/root/edithosts.sh index 491186f..4eaecd4 100755 --- a/patches/systemvm/debian/config/root/edithosts.sh +++ b/patches/systemvm/debian/config/root/edithosts.sh @@ -105,7 +105,7 @@ if [ $no_dhcp_release -eq 0 ] then #release previous dhcp lease if present logger -t cloud "edithosts: releasing $ipv4" - dhcp_release eth0 $ip $(grep $ip $DHCP_LEASES | awk '{print $2}') > /dev/null 2>&1 + dhcp_release eth0 $ipv4 $(grep $ipv4 $DHCP_LEASES | awk '{print $2}') > /dev/null 2>&1 logger -t cloud "edithosts: released $ipv4" fi