diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-09-27 15:02:09 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-09-27 15:02:09 +0000 |
commit | 35c8b1b0a104deebbf52d482653902d2af59693a (patch) | |
tree | f4160927590c8b4976ca80ba05dbbe432759c2f6 | |
parent | re-add 2.71 with fixed Manifest wrt #523328 and unbundle minilzo wrt #515266 (diff) | |
download | gentoo-2-35c8b1b0a104deebbf52d482653902d2af59693a.tar.gz gentoo-2-35c8b1b0a104deebbf52d482653902d2af59693a.tar.bz2 gentoo-2-35c8b1b0a104deebbf52d482653902d2af59693a.zip |
Fix bashism, bug #523862
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
-rw-r--r-- | net-misc/tinc/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/tinc/files/tincd-r1 | 6 | ||||
-rw-r--r-- | net-misc/tinc/tinc-1.0.24-r2.ebuild (renamed from net-misc/tinc/tinc-1.0.24-r1.ebuild) | 2 | ||||
-rw-r--r-- | net-misc/tinc/tinc-1.1_pre10-r1.ebuild (renamed from net-misc/tinc/tinc-1.1_pre10.ebuild) | 2 |
4 files changed, 14 insertions, 6 deletions
diff --git a/net-misc/tinc/ChangeLog b/net-misc/tinc/ChangeLog index 16301d609c4e..48edfa7d7d5d 100644 --- a/net-misc/tinc/ChangeLog +++ b/net-misc/tinc/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-misc/tinc # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.48 2014/07/17 05:47:19 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.49 2014/09/27 15:02:09 blueness Exp $ + +*tinc-1.1_pre10-r1 (27 Sep 2014) +*tinc-1.0.24-r2 (27 Sep 2014) + + 27 Sep 2014; Anthony G. Basile <blueness@gentoo.org> +tinc-1.0.24-r2.ebuild, + +tinc-1.1_pre10-r1.ebuild, -tinc-1.0.24-r1.ebuild, -tinc-1.1_pre10.ebuild, + files/tincd-r1: + Fix bashism, bug #523862 *tinc-1.1_pre10 (17 Jul 2014) *tinc-1.0.24-r1 (17 Jul 2014) diff --git a/net-misc/tinc/files/tincd-r1 b/net-misc/tinc/files/tincd-r1 index fe999a210962..c199a3d57baf 100644 --- a/net-misc/tinc/files/tincd-r1 +++ b/net-misc/tinc/files/tincd-r1 @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/files/tincd-r1,v 1.1 2014/07/17 05:47:19 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/files/tincd-r1,v 1.2 2014/09/27 15:02:09 blueness Exp $ extra_started_commands="reload" @@ -14,7 +14,7 @@ depend() { } checkconfig() { - if [ "${RC_SVCNAME}" == "tincd" ] ; then + if [ "${RC_SVCNAME}" = "tincd" ] ; then ALL_NETNAME="$(awk '/^ *NETWORK:/ { print $2 }' "${NETS}")" else ALL_NETNAME="${RC_SVCNAME#*.}" @@ -39,7 +39,7 @@ start() { eerror "Please set up ${CONFIG} !" else ebegin "Starting tinc network ${NETNAME}" - if [ "${SYSLOG}" == "yes" ]; then + if [ "${SYSLOG}" = "yes" ]; then LOG="" else LOG="--logfile=/var/log/tinc.${NETNAME}.log" diff --git a/net-misc/tinc/tinc-1.0.24-r1.ebuild b/net-misc/tinc/tinc-1.0.24-r2.ebuild index cb0bf26f33cd..c5d21fd8923b 100644 --- a/net-misc/tinc/tinc-1.0.24-r1.ebuild +++ b/net-misc/tinc/tinc-1.0.24-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.24-r1.ebuild,v 1.1 2014/07/17 05:47:19 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.24-r2.ebuild,v 1.1 2014/09/27 15:02:09 blueness Exp $ EAPI="5" inherit systemd diff --git a/net-misc/tinc/tinc-1.1_pre10.ebuild b/net-misc/tinc/tinc-1.1_pre10-r1.ebuild index 6856e4f17dbb..c20433d890f3 100644 --- a/net-misc/tinc/tinc-1.1_pre10.ebuild +++ b/net-misc/tinc/tinc-1.1_pre10-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.1_pre10.ebuild,v 1.1 2014/07/17 05:47:19 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.1_pre10-r1.ebuild,v 1.1 2014/09/27 15:02:09 blueness Exp $ EAPI="5" |