diff options
| author | mail_redacted_for_web | 2024-04-14 21:39:24 +0200 | 
|---|---|---|
| committer | mail_redacted_for_web | 2024-04-14 21:39:24 +0200 | 
| commit | eef7c0fa1f07dde0ae01803bcda92d40fe743da8 (patch) | |
| tree | 49bc99c08ee84419560702212671e22c5414a3f3 | |
| parent | 9cc82874a1b45ab2e75f38096c9f37c7d5a406f3 (diff) | |
| download | ansible-eef7c0fa1f07dde0ae01803bcda92d40fe743da8.tar.bz2 | |
bugfix: 'order: inventory' is the way to go
| -rw-r--r-- | patch.yaml | 10 | 
1 files changed, 4 insertions, 6 deletions
@@ -2,9 +2,7 @@  # You may want to change the default to your favourite host (group) you run this on the most.  - name: Arrange Inventory    hosts: "{{ rthosts | default('CHANGE_ME') }}" -  # Change: "inventory" now became "default". "inventory" is being frowned upon by ansible-lint. -  # (At least until "default" behaviour changes again in the future, I assume :-) ) -  order: default +  order: inventory    gather_facts: false    # default: all in first step, but that shit requires (int)    serial: 666 @@ -21,7 +19,7 @@      - always  - name: Trigger Debian patching role on Debian hosts    hosts: adfv_debian -  order: default +  order: inventory    gather_facts: false    # default: all in first step, but that shit requires (int)    serial: 666 @@ -33,7 +31,7 @@      - debian  - name: Trigger Red Hat patching role on Red Hat hosts    hosts: adfv_redhat -  order: default +  order: inventory    gather_facts: false    # default: all in first step, but that shit requires (int)    serial: 666 @@ -45,7 +43,7 @@      - redhat  - name: Trigger SUSE patching role on SUSE hosts    hosts: adfv_suse -  order: default +  order: inventory    gather_facts: false    # default: all in first step, but that shit requires (int)    serial: 666  | 
