[oe-commits] Andreas Oberritter : suricata: fix sh equality operator

git version control git at git.openembedded.org
Sun Nov 14 23:43:38 UTC 2010


Module: openembedded.git
Branch: master
Commit: 5467e72ba84aa47346cf4911db19c468d2036d27
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=5467e72ba84aa47346cf4911db19c468d2036d27

Author: Andreas Oberritter <obi at opendreambox.org>
Date:   Tue Oct 26 15:43:32 2010 +0000

suricata: fix sh equality operator

Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
Signed-off-by: Michael Smith <msmith at cbnco.com>

---

 recipes/suricata/suricata/init     |    2 +-
 recipes/suricata/suricata_1.0.2.bb |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/recipes/suricata/suricata/init b/recipes/suricata/suricata/init
index eea03ef..94bd98d 100644
--- a/recipes/suricata/suricata/init
+++ b/recipes/suricata/suricata/init
@@ -12,7 +12,7 @@ if [ -f /etc/default/suricata ]; then
 	. /etc/default/suricata
 fi
 
-if [ "x$SURICATA_PARAMS" == "x" ]; then
+if [ "x$SURICATA_PARAMS" = "x" ]; then
 	echo "No SURICATA_PARAMS defined in default file, won't run Suricata" >&2
 	exit 1
 fi
diff --git a/recipes/suricata/suricata_1.0.2.bb b/recipes/suricata/suricata_1.0.2.bb
index bbede76..ed1f850 100644
--- a/recipes/suricata/suricata_1.0.2.bb
+++ b/recipes/suricata/suricata_1.0.2.bb
@@ -3,7 +3,7 @@ LICENSE = "GPLv2"
 HOMEPAGE = "http://openinfosecfoundation.org/"
 DEPENDS = "libhtp libyaml libprelude libnetfilter-queue libnet libpcap libpcre libpfring"
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI = " \
 	http://www.openinfosecfoundation.org/download/suricata-${PV}.tar.gz \
@@ -52,4 +52,4 @@ CONFFILES_${PN} = " \
 	${sysconfdir}/default/suricata \
 	${sysconfdir}/suricata/suricata.yaml \
 	${sysconfdir}/suricata/classification.config \
-	"
\ No newline at end of file
+	"





More information about the Openembedded-commits mailing list