summaryrefslogtreecommitdiffstats
path: root/etc/rc.update_bogons.sh
diff options
context:
space:
mode:
Diffstat (limited to 'etc/rc.update_bogons.sh')
-rwxr-xr-xetc/rc.update_bogons.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.update_bogons.sh b/etc/rc.update_bogons.sh
index ee369ad..69870eb 100755
--- a/etc/rc.update_bogons.sh
+++ b/etc/rc.update_bogons.sh
@@ -48,7 +48,7 @@ if [ "$BOGON_V4_MD5" = "$ON_DISK_V4_MD5" ]; then
egrep -v "^192.168.0.0/16|^172.16.0.0/12|^10.0.0.0/8" /tmp/bogons > /etc/bogons
RESULT=`/sbin/pfctl -t bogons -T replace -f /etc/bogons 2>&1`
rm /tmp/bogons
- echo "Bogons V4 file downloaded: $RESULT" | logger
+ echo "$RESULT" |awk '{ print "Bogons V4 file downloaded: " $0 }' | logger
else
echo "Could not download http://files.pfsense.org/lists/fullbogons-ipv4.txt.md5 (md5 mismatch)" | logger
md5_error="true"
@@ -58,7 +58,7 @@ if [ "$BOGON_V6_MD5" = "$ON_DISK_V6_MD5" ]; then
egrep -v "^fc00::/7" /tmp/bogonsv6 > /etc/bogonsv6
RESULT=`/sbin/pfctl -t bogonsv6 -T replace -f /etc/bogonsv6 2>&1`
rm /tmp/bogonsv6
- echo "Bogons V6 file downloaded: $RESULT" | logger
+ echo "$RESULT" |awk '{ print "Bogons V6 file downloaded: " $0 }' | logger
else
echo "Could not download http://files.pfsense.org/lists/fullbogons-ipv6.txt.md5 (md5 mismatch)" | logger
md5_error="true"
OpenPOWER on IntegriCloud