From b56137d875f43026aeabcc4403252e5e7008b93a Mon Sep 17 00:00:00 2001 From: EUcancER Date: Tue, 23 Aug 2011 23:51:24 +0000 Subject: check-free-retiolum: fixed bug which produces wrong match --- retiolum/bin/check-free-retiolum-v4 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'retiolum/bin') diff --git a/retiolum/bin/check-free-retiolum-v4 b/retiolum/bin/check-free-retiolum-v4 index e9c6b3ce..3f0dbdf8 100755 --- a/retiolum/bin/check-free-retiolum-v4 +++ b/retiolum/bin/check-free-retiolum-v4 @@ -1,5 +1,4 @@ #! /bin/sh -set -x netname=retiolum myipv4=${1-10.7.7.-1} v4num=${myipv4##*.} @@ -10,12 +9,12 @@ then cd /etc/tinc/$netname/hosts printf "Check if ip is still free: " for i in `ls -1`; do - if grep $myipv4 $i &>/dev/null ;then + if grep -q -e $myipv4\$ $i ;then echo "Host IP already taken by $i! " exit 1 fi done - printf "Passed" + printf "Passed\n" else printf "you are made of stupid. bailing out\n" exit 1 -- cgit v1.2.3