Extras zu changed_when, failed_when
This commit is contained in:
parent
5e5aa3c77e
commit
9fd424679d
18
extra/changed_failed_when.yml
Normal file
18
extra/changed_failed_when.yml
Normal 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
9
extra/changed_when.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
- hosts: all
|
||||
gather_facts: no
|
||||
|
||||
tasks:
|
||||
- command: cat /etc/hosts
|
||||
register: output
|
||||
changed_when: '"ubu" in output.stdout'
|
||||
|
26
extra/ein_rechner_failed.yml
Normal file
26
extra/ein_rechner_failed.yml
Normal 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"
|
||||
|
||||
|
8
extra/wireguard-key-anlegen_changed_when.yml
Normal file
8
extra/wireguard-key-anlegen_changed_when.yml
Normal 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 != ""
|
||||
|
8
extra/wireguard-key-anlegen_creates.yml
Normal file
8
extra/wireguard-key-anlegen_creates.yml
Normal 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
|
||||
|
Loading…
Reference in a new issue