Disable SSH host key checking
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danny Bessems 2022-10-15 17:47:55 +02:00
parent 257ecc6890
commit 600f15ad0d
2 changed files with 1 additions and 17 deletions

View File

@ -17,6 +17,7 @@ steps:
--extra-vars "cifs_username=$${cifs_username} cifs_password=$${cifs_password}" \
playbook.yml
environment:
ANSIBLE_HOST_KEY_CHECKING: false
cifs_username:
from_secret: cifs_username
cifs_password:

View File

@ -37,23 +37,6 @@
repo: deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ releasename.stdout }} stable
state: present
# # Pinning versions due to odd DNS issue in 20.x
# - name: Pin Docker engine to specific version
# copy:
# dest: "{{ item.dest }}"
# content: "{{ item.content }}"
# with_items:
# - dest: /etc/apt/preferences.d/docker-ce
# content: |
# Package: docker-ce
# Pin: version 5:19.03.13~3-0~ubuntu-focal
# Pin-Priority: 1001
# - dest: /etc/apt/preferences.d/docker-ce-cli
# content: |
# Package: docker-ce-cli
# Pin: version 5:19.03.13~3-0~ubuntu-focal
# Pin-Priority: 1001
- name: Install Docker engine
ansible.builtin.apt:
update_cache: yes