Remove get_md5 because it was removed in ansible 2.9:
https://github.com/ansible-community/ansible-build-data/blob/
0dee49ac8a7674153606ddc6432d4029eb20172d/9/CHANGELOG-v9.rst#L5195
fixes: https://tracker.ceph.com/issues/66106
Signed-off-by: Vallari Agrawal <val.agl002@gmail.com>
---
- name: Check to see if the kernel exists
- stat: path={{ kernel_path }} get_checksum=no get_md5=no
+ stat: path={{ kernel_path }} get_checksum=no
register: kernel_stat
- name: Check to see if the initrd exists
- stat: path={{ initrd_path }} get_checksum=no get_md5=no
+ stat: path={{ initrd_path }} get_checksum=no
register: initrd_stat
- name: Download kernel
---
- name: Check to see if the ISO exists
- stat: path={{ iso_path }} get_checksum=no get_md5=no
+ stat: path={{ iso_path }} get_checksum=no
register: iso_stat
- name: Download ISO
stat:
path: "{{ supervisor_conf_path }}"
get_checksum: no
- get_md5: no
register: supervisor_conf
- name: Copy supervisord config
stat:
path: "{{ pulpito_repo_path }}/virtualenv"
get_checksum: no
- get_md5: no
register: virtualenv
- name: Create the virtualenv
stat:
path: "{{ pulpito_repo_path }}/prod.py"
get_checksum: no
- get_md5: no
register: pulpito_config
- name: Copy pulpito config
stat:
path: /etc/network/interfaces
get_checksum: no
- get_md5: no
register: etc_network_interfaces
- name: Rewrite /etc/network/interfaces to use dhcp