disable strict hostkey checking
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
d6153ad67c
commit
94ff855497
@ -11,14 +11,14 @@ echo "Changed files: $CHFILENAMES"
|
|||||||
for file in $CHFILENAMES; do
|
for file in $CHFILENAMES; do
|
||||||
if [[ $file == *"zone" ]]; then
|
if [[ $file == *"zone" ]]; then
|
||||||
echo "SCP of $file started"
|
echo "SCP of $file started"
|
||||||
scp $file "$PLUGIN_USER"@"$PLUGIN_HOSTS":"$PLUGIN_TARGET"/$file
|
scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null $file "$PLUGIN_USER"@"$PLUGIN_HOSTS":"$PLUGIN_TARGET"/$file
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo "SCP failed" 1>&2
|
echo "SCP failed" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
ZONE=$(echo $file | sed 's/\.zone//')
|
ZONE=$(echo $file | sed 's/\.zone//')
|
||||||
echo "Reload $ZONE zone"
|
echo "Reload $ZONE zone"
|
||||||
ssh "PLUGIN_USER"@"$PLUGIN_HOSTS" nsd-control reload $ZONE
|
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null "PLUGIN_USER"@"$PLUGIN_HOSTS" nsd-control reload $ZONE
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo "Reload of zone failed" 1>&2
|
echo "Reload of zone failed" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user