Skip to content

Commit

Permalink
Remove use of get_md5 parameter in stat module
Browse files Browse the repository at this point in the history
  • Loading branch information
Griffin-Sullivan committed May 30, 2024
1 parent d67892f commit 2fd444a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions roles/satellite-clone/tasks/backup_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
stat:
path: '{{ backup_dir }}/config_files.tar.gz'
get_checksum: False
get_md5: False
register: config_data

- name: set fact - config_data

Check warning on line 8 in roles/satellite-clone/tasks/backup_check.yml

View workflow job for this annotation

GitHub Actions / lint

fqcn[action-core]

Use FQCN for builtin module actions (set_fact).

Check warning on line 8 in roles/satellite-clone/tasks/backup_check.yml

View workflow job for this annotation

GitHub Actions / lint

name[casing]

All names should start with an uppercase letter.
Expand All @@ -14,7 +13,6 @@
stat:
path: '{{ backup_dir }}/pgsql_data.tar.gz'
get_checksum: False
get_md5: False
register: pgsql_data

- name: set fact - pgsql_data

Check warning on line 18 in roles/satellite-clone/tasks/backup_check.yml

View workflow job for this annotation

GitHub Actions / lint

fqcn[action-core]

Use FQCN for builtin module actions (set_fact).

Check warning on line 18 in roles/satellite-clone/tasks/backup_check.yml

View workflow job for this annotation

GitHub Actions / lint

name[casing]

All names should start with an uppercase letter.
Expand All @@ -25,7 +23,6 @@
stat:
path: '{{ backup_dir }}/pulp_data.tar'
get_checksum: False
get_md5: False
register: pulp_data

- name: set fact - pulp_data

Check warning on line 28 in roles/satellite-clone/tasks/backup_check.yml

View workflow job for this annotation

GitHub Actions / lint

fqcn[action-core]

Use FQCN for builtin module actions (set_fact).

Check warning on line 28 in roles/satellite-clone/tasks/backup_check.yml

View workflow job for this annotation

GitHub Actions / lint

name[casing]

All names should start with an uppercase letter.
Expand All @@ -36,7 +33,6 @@
stat:
path: '{{ backup_dir }}/foreman.dump'
get_checksum: False
get_md5: False
register: foreman_dump

- name: set fact - foreman_dump
Expand All @@ -47,7 +43,6 @@
stat:
path: "{{ backup_dir }}/candlepin.dump"
get_checksum: False
get_md5: False
register: candlepin_dump

- name: set fact - candlepin_dump
Expand All @@ -58,7 +53,6 @@
stat:
path: "{{ backup_dir }}/pulpcore.dump"
get_checksum: False
get_md5: False
register: pulpcore_dump

- name: set fact - pulpcore_dump
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
stat:
path: "{{ backup_dir }}/metadata.yml"
get_checksum: False
get_md5: False
register: metadata

- name: set fact - metadata
Expand Down

0 comments on commit 2fd444a

Please sign in to comment.