diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-04-27 09:42:43 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-04-27 09:42:43 +0000 |
commit | e77349e98f8b3d8be563340f370802d36206034e (patch) | |
tree | ce2c44bad8ec9ef0044020d87256b5f0c6ce5831 /net-firewall/iptables | |
parent | Force selection of -std=gnu89 for clang #427300 by Fabio Scaccabarozzi. (diff) | |
download | gentoo-2-e77349e98f8b3d8be563340f370802d36206034e.tar.gz gentoo-2-e77349e98f8b3d8be563340f370802d36206034e.tar.bz2 gentoo-2-e77349e98f8b3d8be563340f370802d36206034e.zip |
Have init.d depend on localmount for /var state #434774 by Marc Schiffbauer.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'net-firewall/iptables')
-rw-r--r-- | net-firewall/iptables/ChangeLog | 5 | ||||
-rw-r--r-- | net-firewall/iptables/files/iptables-1.4.13-r1.init | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net-firewall/iptables/ChangeLog b/net-firewall/iptables/ChangeLog index b6bcec69ec6f..a4003a2cd329 100644 --- a/net-firewall/iptables/ChangeLog +++ b/net-firewall/iptables/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-firewall/iptables # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.287 2013/02/16 12:49:24 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.288 2013/04/27 09:42:43 vapier Exp $ + + 27 Apr 2013; Mike Frysinger <vapier@gentoo.org> files/iptables-1.4.13-r1.init: + Have init.d depend on localmount for /var state #434774 by Marc Schiffbauer. 16 Feb 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml: Cleanup due bug #96436 diff --git a/net-firewall/iptables/files/iptables-1.4.13-r1.init b/net-firewall/iptables/files/iptables-1.4.13-r1.init index 6806bc9c7282..c0976970d93b 100644 --- a/net-firewall/iptables/files/iptables-1.4.13-r1.init +++ b/net-firewall/iptables/files/iptables-1.4.13-r1.init @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.4.13-r1.init,v 1.1 2012/09/14 17:58:26 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.4.13-r1.init,v 1.2 2013/04/27 09:42:43 vapier Exp $ extra_commands="save panic" extra_started_commands="reload" @@ -20,6 +20,7 @@ case ${iptables_name} in esac depend() { + need localmount #434774 before net } |