git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Pfeiffer <coding _ lirion.de> 2024-04-14 21:39:24 +0200
committerHarald Pfeiffer <coding _ lirion.de> 2024-04-14 21:39:24 +0200
commiteef7c0fa1f07dde0ae01803bcda92d40fe743da8 (patch)
tree49bc99c08ee84419560702212671e22c5414a3f3
parent9cc82874a1b45ab2e75f38096c9f37c7d5a406f3 (diff)
downloadansible-eef7c0fa1f07dde0ae01803bcda92d40fe743da8.tar.bz2
bugfix: 'order: inventory' is the way to go
-rw-r--r--patch.yaml10
1 files changed, 4 insertions, 6 deletions
diff --git a/patch.yaml b/patch.yaml
index 2ed2ea5..e9159f7 100644
--- a/patch.yaml
+++ b/patch.yaml
@@ -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