diff -Nru suricata-1.1.1/debian/changelog suricata-1.1.1/debian/changelog --- suricata-1.1.1/debian/changelog 2011-12-07 18:52:53.000000000 -0200 +++ suricata-1.1.1/debian/changelog 2014-04-23 19:33:30.000000000 -0300 @@ -1,3 +1,10 @@ +suricata (1.1.1-1ubuntu1) precise; urgency=medium + + * Fixed init script nfnetlink_queue detection for newer kernels. (LP: #1250439) + * Fixed reference-config-file so daemon can start out-of-the-box. + + -- Rafael David Tinoco Wed, 23 Apr 2014 19:33:26 -0300 + suricata (1.1.1-1) unstable; urgency=low * Imported Upstream version 1.1.1 diff -Nru suricata-1.1.1/debian/rules suricata-1.1.1/debian/rules --- suricata-1.1.1/debian/rules 2011-12-07 18:44:41.000000000 -0200 +++ suricata-1.1.1/debian/rules 2014-04-23 19:42:01.000000000 -0300 @@ -20,6 +20,7 @@ dh_auto_configure -- $(CONFIGURE_ARGS) sed \ -e 's|^classification-file: .*$$|classification-file: /etc/snort/classification.config|' \ + -e 's|^reference-config-file: .*$$|reference-config-file: /etc/snort/reference.config|' \ -e 's|^default-rule-path: .*$$|default-rule-path: /etc/snort/rules|' \ suricata.yaml > suricata-debian.yaml diff -Nru suricata-1.1.1/debian/suricata.init suricata-1.1.1/debian/suricata.init --- suricata-1.1.1/debian/suricata.init 2010-12-19 14:06:35.000000000 -0200 +++ suricata-1.1.1/debian/suricata.init 2014-04-23 19:34:22.000000000 -0300 @@ -42,7 +42,7 @@ } check_nfqueue() { -if [ ! -e /proc/net/netfilter/nf_queue ]; then +if [ ! -e /proc/net/netfilter/nfnetlink_queue ]; then log_failure_msg "NFQUEUE support not found !" log_failure_msg "Please ensure the nfnetlink_queue module is loaded or built in kernel" exit 5