Skip to content

Commit 49470b2

Browse files
author
Suguru Hirahara
committed
Remove ignore_errors: true
Signed-off-by: Suguru Hirahara <[email protected]>
1 parent e36e9e9 commit 49470b2

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

tasks/self_check.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
validate_certs: "{{ ntfy_self_check_validate_certificates }}"
1818
register: ntfy_self_check_result
1919
check_mode: false
20-
ignore_errors: true
2120
delegate_to: 127.0.0.1
2221
become: false
2322

tasks/setup_users.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
user add --role={{ item.admin | ternary("admin", "user") }} {{ item.username }}'
6161
loop: "{{ ntfy_credentials }}"
6262
when: item.username in users_to_add
63-
ignore_errors: true
6463
no_log: true # suppress the output which includes credentials
6564

6665
- name: Write ntfy users passwords
@@ -76,7 +75,6 @@
7675
user change-pass {{ item.username }}'
7776
loop: "{{ ntfy_credentials }}"
7877
when: item.username in existing_users
79-
ignore_errors: true
8078
no_log: true # suppress the output which includes credentials
8179

8280
- name: Write ntfy users roles
@@ -92,7 +90,6 @@
9290
with_items: "{{ ntfy_credentials }}"
9391
loop: "{{ ntfy_credentials }}"
9492
when: item.username in existing_users
95-
ignore_errors: true
9693
no_log: true # suppress the output which includes credentials
9794

9895
- name: Identify users to delete
@@ -111,4 +108,3 @@
111108
user del {{ item }}'
112109
loop: "{{ users_to_delete }}"
113110
when: users_to_delete | length > 0
114-
ignore_errors: true

0 commit comments

Comments
 (0)