From a2050504feeca2718d80ff22b8c4ddbcbf6e39eb Mon Sep 17 00:00:00 2001 From: Manevolent Date: Thu, 13 Apr 2023 01:06:04 -0600 Subject: [PATCH] Update check-node --- tinc/check-node | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinc/check-node b/tinc/check-node index 8fbe294..29ab308 100644 --- a/tinc/check-node +++ b/tinc/check-node @@ -4,6 +4,6 @@ num_macs=`ls /tmp/tinc/peer/$NODE/mac | wc -l` if [ "$num_macs" = "1" ]; then mac=`ls /tmp/tinc/peer/$NODE/mac` ips=`ls /tmp/tinc/peer/$NODE/ip` - echo $ips | xargs -n 1 -I {} "[ARP] Adding {} to the table..." + echo $ips | xargs -n 1 -I {} echo "[ARP] Adding {} to the table..." echo $ips | xargs -n 1 -I {} arp -s {} $mac fi