diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2013-11-27 14:32:54 -0500 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2013-11-27 14:32:54 -0500 |
commit | 30d520c6108e8e2056bc8e727151a8da5a5b6620 (patch) | |
tree | 4f180f5c434b2c65d33fb2107adcdb3d7e20001a /config/snort | |
parent | 542ef4507ec5b4d4cae413e15a5fbb64beb985dd (diff) | |
download | pfsense-packages-30d520c6108e8e2056bc8e727151a8da5a5b6620.tar.gz pfsense-packages-30d520c6108e8e2056bc8e727151a8da5a5b6620.tar.bz2 pfsense-packages-30d520c6108e8e2056bc8e727151a8da5a5b6620.zip |
Add missing backslash escape character to shell script string.
Diffstat (limited to 'config/snort')
-rwxr-xr-x | config/snort/snort.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc index 5de18898..c85e9329 100755 --- a/config/snort/snort.inc +++ b/config/snort/snort.inc @@ -1855,7 +1855,7 @@ function snort_create_rc() { fi if [ ! -z \$pid ]; then /usr/bin/logger -p daemon.info -i -t SnortStartup "Barnyard2 STOP for {$value['descr']}({$snort_uuid}_{$if_real})..." - /bin/pkill $pid -a + /bin/pkill \$pid -a time=0 timeout=30 while kill -0 \$pid 2>/dev/null; do sleep 1 |