don't update if already exists
This commit is contained in:
parent
1e38250442
commit
611251cf40
@ -1,4 +1,4 @@
|
||||
#!/bin/bash -e
|
||||
#!/bin/bash
|
||||
##########################################################################
|
||||
# where am I ?
|
||||
SCRIPTPATH="$(cd "$(dirname "$0")" ; pwd -P)"
|
||||
@ -31,6 +31,14 @@ fi
|
||||
|
||||
pushd "$DYNAMICPATH" > /dev/null
|
||||
|
||||
# don't update if the line already exists
|
||||
grep -Fx "$line" virtual.js > /dev/null 2>&1
|
||||
if [ $? -eq 0 ]
|
||||
then
|
||||
echo "DNS: Already exists, no change"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# remove any existing lines
|
||||
sed -i -e "/^ \[ '$name',/d" virtual.js
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user