Extras zu changed_when, failed_when

This commit is contained in:
Sven Velt 2025-03-27 14:35:57 +01:00
parent 5e5aa3c77e
commit 9fd424679d
5 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,18 @@
---
- hosts:
- tn00-debian12
- tn00-alpine3i
gather_facts: no
tasks:
- name: "Gebe CHANGED zurück, wenn /etc/hostname den String 'debian' enthält"
command: cat /etc/hostname
register: output
changed_when: '"debian" in output.stdout'
- name: "Gebe FAILED zurück, wenn /etc/hostname den String 'alpine' enthält"
command: cat /etc/hostname
register: output
failed_when: '"alpine" in output.stdout'

9
extra/changed_when.yml Normal file
View file

@ -0,0 +1,9 @@
---
- hosts: all
gather_facts: no
tasks:
- command: cat /etc/hosts
register: output
changed_when: '"ubu" in output.stdout'

View file

@ -0,0 +1,26 @@
---
- hosts:
- tn00-debian12
- tn00-alpine3i
gather_facts: no
tasks:
- name: Debian bricht ab
debug:
msg: "Hallo"
failed_when: '"debian" in inventory_hostname'
- hosts:
- tn00-debian12
- tn00-alpine3i
gather_facts: no
tasks:
- name: "Wer lebt noch?"
debug:
msg: "Lebenszeichen"

View file

@ -0,0 +1,8 @@
---
- hosts: localhost
gather_facts: no
tasks:
- shell: "[ ! -f wg.pub ] && wg genkey | tee wg.priv | wg pubkey | tee wg.pub || true"
register: output
changed_when: output.stdout != ""

View file

@ -0,0 +1,8 @@
---
- hosts: localhost
gather_facts: no
tasks:
- shell: "wg genkey | tee wg.priv | wg pubkey | tee wg.pub"
args:
creates: wg.pub