diff options
-rwxr-xr-x | retiolum/scripts/routing/defaultroute.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/retiolum/scripts/routing/defaultroute.sh b/retiolum/scripts/routing/defaultroute.sh index 9d7d6683..b7d703e8 100755 --- a/retiolum/scripts/routing/defaultroute.sh +++ b/retiolum/scripts/routing/defaultroute.sh @@ -40,7 +40,7 @@ do host -4 $host | grep "has address" | awk '{ print $4 }' | while read addr do - route $command $addr gw $defaultroute + route $command $addr gw $defaultroute && echo "$command routing to $addr via $defaultroute" done fi done |