Skip to content

Commit

Permalink
Fix default for osism_setup_gather_subset in gather-facts (#483)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Berendt <[email protected]>
  • Loading branch information
berendt authored Aug 25, 2024
1 parent e7d5bb2 commit 0a3b4a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playbooks/generic/gather-facts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- name: Gathers facts about hosts
ansible.builtin.setup:
filter: "{{ osism_setup_filter | default('') }}"
gather_subset: "{{ osism_setup_gather_subset | default('generic') }}"
gather_subset: "{{ osism_setup_gather_subset | default('all') }}"
delegate_facts: true
delegate_to: "{{ item }}"
with_items: "{{ groups['generic'] }}"
Expand Down

0 comments on commit 0a3b4a8

Please sign in to comment.