From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 582A8138200 for ; Tue, 6 Nov 2012 23:20:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A852721C024; Tue, 6 Nov 2012 23:19:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F250821C024 for ; Tue, 6 Nov 2012 23:19:49 +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 3372A33DC1E for ; Tue, 6 Nov 2012 23:19:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id C9AC1E5450 for ; Tue, 6 Nov 2012 23:19:47 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1352243912.54562d3525ae99a7982b4e506978dc0b875c240c.robbat2@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: net/ X-VCS-Repository: proj/openrc X-VCS-Files: net/vlan.sh X-VCS-Directories: net/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 54562d3525ae99a7982b4e506978dc0b875c240c X-VCS-Branch: master Date: Tue, 6 Nov 2012 23:19:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 555e6173-e7e0-4b8f-960e-c2ba6dcde1d6 X-Archives-Hash: 2d0d996ddc975aae6a54ed07151910a4 commit: 54562d3525ae99a7982b4e506978dc0b875c240c Author: Robin H. Johnson gentoo org> AuthorDate: Tue Nov 6 23:18:32 2012 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Nov 6 23:18:32 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=54562d35 net/vlan: checkbashisms. Signed-off-by: Robin H. Johnson gentoo.org> --- net/vlan.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/vlan.sh b/net/vlan.sh index b29af80..458cb2d 100644 --- a/net/vlan.sh +++ b/net/vlan.sh @@ -117,7 +117,7 @@ vlan_post_start() /proc/net/vlan/config )" mark_service_started "net.${ifname}" ( - export RC_SVCNAME="net.${ifname}" + RC_SVCNAME="net.${ifname}" ; export RC_SVCNAME start ) || mark_service_stopped "net.${ifname}" done @@ -134,7 +134,7 @@ vlan_pre_stop() for vlan in $(_get_vlans); do einfo "Removing VLAN ${vlan##*.} from ${IFACE}" ( - export RC_SVCNAME="net.${vlan}" + RC_SVCNAME="net.${vlan}" ; export RC_SVCNAME stop ) && { mark_service_stopped "net.${vlan}"