Add host check disabling

This commit is contained in:
Nana Janashia
2021-04-03 18:03:31 +02:00
parent 0e2f79cbcd
commit 610c123802

View File

@@ -9,7 +9,7 @@ pipeline {
script { script {
echo "copying ansible folder to ansible server" echo "copying ansible folder to ansible server"
sshagent(['ansible-server-key']) { sshagent(['ansible-server-key']) {
sh "scp ansible/ansible.cfg ${ANSIBLE_SERVER}:/root" sh "scp -o StrictHostKeyChecking=no ansible/ansible.cfg ${ANSIBLE_SERVER}:/root"
} }
} }
} }