git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/patch.yaml
diff options
context:
space:
mode:
authorHarald Pfeiffer <coding _ lirion.de> 2024-04-14 13:23:24 +0200
committerHarald Pfeiffer <coding _ lirion.de> 2024-04-14 13:23:24 +0200
commit8c8080b20fe4c4c2e6fca23f48051a4e25257e2c (patch)
treee371e09c2059e2795ab896bc902367a2779b0afc /patch.yaml
parentaa0e58f8ee72a9410ddf4db1f5f05f42045a3db8 (diff)
downloadansible-8c8080b20fe4c4c2e6fca23f48051a4e25257e2c.tar.bz2
InComm: Roles to Handlers: Debian done
Diffstat (limited to 'patch.yaml')
-rw-r--r--patch.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/patch.yaml b/patch.yaml
new file mode 100644
index 0000000..5fa350f
--- /dev/null
+++ b/patch.yaml
@@ -0,0 +1,15 @@
+---
+# You may want to change the default to your favourite host (group) you run this on the most.
+- hosts: "{{ rthosts | default('CHANGE_ME') }}"
+ order: inventory
+ gather_facts: false
+ # default: all in first step, but that shit requires (int)
+ serial: 666
+ tasks:
+ - name: Gather necessary facts
+ setup:
+ filter: "ansible_distribution*"
+ - name: Debian Patches
+ ansible.builtin.import_role:
+ name: "patch_debian"
+ when: ansible_distribution_file_variety == "Debian"