2024-09/08/weiteres/debug_zusammen.yml

19 lines
345 B
YAML
Raw Normal View History

2024-09-18 12:10:22 +00:00
---
- hosts: localhost
tasks:
- command: grep root /etc/passwd
register: abc1
ignore_errors: yes
- command: grep toor /etc/passwd
register: abc2
ignore_errors: yes
- debug:
msg: "{{ abc1.failed }} --- {{ abc2.failed }}"
- debug:
msg: "{{ abc1 is failed }} --- {{ abc2 is failed }}"