diff options
-rwxr-xr-x | cron-sh/promisc_check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-sh/promisc_check.sh b/cron-sh/promisc_check.sh index 9a6c3dd..cd38962 100755 --- a/cron-sh/promisc_check.sh +++ b/cron-sh/promisc_check.sh @@ -52,7 +52,7 @@ if [[ ${CHECK_PROMISC} == no ]]; then exit 0; fi -for INTERFACE in `ip link list | grep PROMISC | cut -f 2 -d ':';/usr/bin/promisc_check -q`; do +for INTERFACE in `/sbin/ip link list | grep PROMISC | cut -f 2 -d ':';/usr/bin/promisc_check -q`; do LogPromisc ${INTERFACE} done |