Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
enabled: true
when:
- network_provider == "nm" or network_state != {}
no_log: true
no_log: "{{ ansible_verbosity < 3 }}"

# If any 802.1x connections are used, the wpa_supplicant
# service is required to be running
Expand All @@ -176,7 +176,7 @@
enabled: true
when:
- network_provider == "initscripts"
no_log: true
no_log: "{{ ansible_verbosity < 3 }}"

- name: Ensure initscripts network file dependency is present
copy:
Expand Down
6 changes: 3 additions & 3 deletions tasks/set_facts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
gather_subset: "{{ __network_required_facts_subsets }}"
when: __network_required_facts |
difference(ansible_facts.keys() | list) | length > 0
no_log: true
no_log: "{{ ansible_verbosity < 3 }}"

- name: Record role begin fingerprint
sr_fingerprint:
Expand All @@ -27,9 +27,9 @@

- name: Check which services are running
service_facts:
no_log: true
no_log: "{{ ansible_verbosity < 3 }}"

# needed for ansible_facts.packages
- name: Check which packages are installed
package_facts:
no_log: true
no_log: "{{ ansible_verbosity < 3 }}"
Loading