diff options
| -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  | 
