Skip to content

Commit 6b86ea7

Browse files
authored
Merge pull request #756 from VallariAg/wip-remove-get_md5
Fix "Unsupported parameters for (stat) module: get_md5"
2 parents cefb3c9 + 1f62824 commit 6b86ea7

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

roles/cobbler_profile/tasks/download_image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
- name: Check to see if the kernel exists
3-
stat: path={{ kernel_path }} get_checksum=no get_md5=no
3+
stat: path={{ kernel_path }} get_checksum=no
44
register: kernel_stat
55

66
- name: Check to see if the initrd exists
7-
stat: path={{ initrd_path }} get_checksum=no get_md5=no
7+
stat: path={{ initrd_path }} get_checksum=no
88
register: initrd_stat
99

1010
- name: Download kernel

roles/cobbler_profile/tasks/download_iso.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- name: Check to see if the ISO exists
3-
stat: path={{ iso_path }} get_checksum=no get_md5=no
3+
stat: path={{ iso_path }} get_checksum=no
44
register: iso_stat
55

66
- name: Download ISO

roles/pulpito/tasks/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
stat:
4444
path: "{{ supervisor_conf_path }}"
4545
get_checksum: no
46-
get_md5: no
4746
register: supervisor_conf
4847

4948
- name: Copy supervisord config

roles/pulpito/tasks/setup_pulpito.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
stat:
2929
path: "{{ pulpito_repo_path }}/virtualenv"
3030
get_checksum: no
31-
get_md5: no
3231
register: virtualenv
3332

3433
- name: Create the virtualenv
@@ -56,7 +55,6 @@
5655
stat:
5756
path: "{{ pulpito_repo_path }}/prod.py"
5857
get_checksum: no
59-
get_md5: no
6058
register: pulpito_config
6159

6260
- name: Copy pulpito config

roles/testnode/tasks/resolvconf.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
stat:
1515
path: /etc/network/interfaces
1616
get_checksum: no
17-
get_md5: no
1817
register: etc_network_interfaces
1918

2019
- name: Rewrite /etc/network/interfaces to use dhcp

0 commit comments

Comments
 (0)