8 lines
158 B
YAML
8 lines
158 B
YAML
- name: "Beispiel 1: Alle .conf Dateien in /etc auflisten"
|
|
debug:
|
|
msg: "Gefundene Konfigurationsdatei: {{ item }}"
|
|
with_fileglob:
|
|
- /etc/*.conf
|
|
|
|
|