From: Chris Koeritz Date: Sat, 1 Oct 2016 18:41:03 +0000 (-0400) Subject: made the log file search range larger X-Git-Tag: 2.140.90~408 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=3434bf29aa4ea3a848293ede000980b42e1f27fd;p=feisty_meow.git made the log file search range larger --- diff --git a/scripts/system/find_dhcp_unassigned.sh b/scripts/system/find_dhcp_unassigned.sh index 6abc1c71..b8b6179a 100644 --- a/scripts/system/find_dhcp_unassigned.sh +++ b/scripts/system/find_dhcp_unassigned.sh @@ -8,5 +8,5 @@ if [ ! -s "$logfile" ]; then # a simple fail over that's not guaranteed to work. logfile="/var/log/syslog" fi -tail -n 500 "$logfile" | grep -i "dhcp.*2[4-5][0-9]" | less +tail -n 2000 "$logfile" | grep -i "dhcp.*2[4-5][0-9]" | less