Skip to content

Commit

Permalink
fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Kritika-Bhateja-03 committed Feb 4, 2025
1 parent f179262 commit 29a032c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
reboot: true
job_wait: true
apply_update: false
catalog_file_name: "{{ catalog_file_name }}"
catalog_file_name: "{{ lookup('env', 'catalog_file_name') }}"
tags: molecule-idempotence-notest

- name: "Verifying update firmware from repository on a HTTPS Share with apply_update as false"
Expand All @@ -41,7 +41,7 @@
reboot: true
job_wait: true
apply_update: true
catalog_file_name: "{{ catalog_file_name }}"
catalog_file_name: "{{ lookup('env', 'catalog_file_name') }}"
ignore_cert_warning: false
tags: molecule-idempotence-notest

Expand All @@ -66,7 +66,7 @@
reboot: false
job_wait: true
apply_update: true
catalog_file_name: "{{ catalog_file_name }}"
catalog_file_name: "{{ lookup('env', 'catalog_file_name') }}"
tags: molecule-idempotence-notest

- name: "Verifying update firmware from repository on a HTTPS Share with reboot as false"
Expand All @@ -90,7 +90,7 @@
reboot: true
job_wait: false
apply_update: true
catalog_file_name: "{{ catalog_file_name }}"
catalog_file_name: "{{ lookup('env', 'catalog_file_name') }}"
tags: molecule-idempotence-notest

- name: "Verifying update firmware from repository on a HTTPS Share with job_wait as false"
Expand Down

0 comments on commit 29a032c

Please sign in to comment.