diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-09 21:52:35 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-09 21:52:35 +0000 |
commit | de270ae1d9ca29a14357902e154a9b88ae0ac450 (patch) | |
tree | cedbb8dac72795a0d00bf32f71f6d13913dcdb1d /net-firewall/iptables/iptables-1.2.9.ebuild | |
parent | Minor fix (Manifest recommit) (diff) | |
download | gentoo-2-de270ae1d9ca29a14357902e154a9b88ae0ac450.tar.gz gentoo-2-de270ae1d9ca29a14357902e154a9b88ae0ac450.tar.bz2 gentoo-2-de270ae1d9ca29a14357902e154a9b88ae0ac450.zip |
Fix use invocation and replace unnecessary subshell with if..then..fi
Diffstat (limited to 'net-firewall/iptables/iptables-1.2.9.ebuild')
-rw-r--r-- | net-firewall/iptables/iptables-1.2.9.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-firewall/iptables/iptables-1.2.9.ebuild b/net-firewall/iptables/iptables-1.2.9.ebuild index ca10d1b1b986..936e418ff500 100644 --- a/net-firewall/iptables/iptables-1.2.9.ebuild +++ b/net-firewall/iptables/iptables-1.2.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.9.ebuild,v 1.11 2004/06/07 13:24:36 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.9.ebuild,v 1.12 2004/06/09 21:52:35 agriffis Exp $ inherit eutils flag-o-matic @@ -71,7 +71,7 @@ src_install() { insinto /etc/conf.d newins ${FILESDIR}/iptables.confd iptables - if [ `use ipv6` ]; then + if use ipv6; then dodir /var/lib/ip6tables ; keepdir /var/lib/ip6tables exeinto /etc/init.d newexe ${FILESDIR}/ip6tables.init ip6tables |