Skip to content

Commit

Permalink
Merge pull request #756 from VallariAg/wip-remove-get_md5
Browse files Browse the repository at this point in the history
Fix "Unsupported parameters for (stat) module: get_md5"
  • Loading branch information
akraitman committed May 20, 2024
2 parents cefb3c9 + 1f62824 commit 6b86ea7
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions roles/cobbler_profile/tasks/download_image.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
- 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
Expand Down
2 changes: 1 addition & 1 deletion roles/cobbler_profile/tasks/download_iso.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- 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
Expand Down
1 change: 0 additions & 1 deletion roles/pulpito/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
stat:
path: "{{ supervisor_conf_path }}"
get_checksum: no
get_md5: no
register: supervisor_conf

- name: Copy supervisord config
Expand Down
2 changes: 0 additions & 2 deletions roles/pulpito/tasks/setup_pulpito.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
stat:
path: "{{ pulpito_repo_path }}/virtualenv"
get_checksum: no
get_md5: no
register: virtualenv

- name: Create the virtualenv
Expand Down Expand Up @@ -56,7 +55,6 @@
stat:
path: "{{ pulpito_repo_path }}/prod.py"
get_checksum: no
get_md5: no
register: pulpito_config

- name: Copy pulpito config
Expand Down
1 change: 0 additions & 1 deletion roles/testnode/tasks/resolvconf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
stat:
path: /etc/network/interfaces
get_checksum: no
get_md5: no
register: etc_network_interfaces

- name: Rewrite /etc/network/interfaces to use dhcp
Expand Down

0 comments on commit 6b86ea7

Please sign in to comment.