suricata: fix sh equality operator
authorAndreas Oberritter <obi@opendreambox.org>
Tue, 26 Oct 2010 15:43:32 +0000 (15:43 +0000)
committerMichael Smith <msmith@cbnco.com>
Sun, 14 Nov 2010 23:36:56 +0000 (18:36 -0500)
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Michael Smith <msmith@cbnco.com>
recipes/suricata/suricata/init
recipes/suricata/suricata_1.0.2.bb

index eea03ef..94bd98d 100644 (file)
@@ -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
index bbede76..ed1f850 100644 (file)
@@ -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
+       "