From 177fb7402f6f79c24b981cfba6c637f103e98750 Mon Sep 17 00:00:00 2001 From: Patrick Niebeling Date: Tue, 25 Nov 2025 21:31:44 +0100 Subject: [PATCH] First Shot --- minimal-debug.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 minimal-debug.yml diff --git a/minimal-debug.yml b/minimal-debug.yml new file mode 100644 index 0000000..98b5813 --- /dev/null +++ b/minimal-debug.yml @@ -0,0 +1,10 @@ +--- +- name: Debug message on localhost without inventory file + hosts: localhost + connection: local + gather_facts: false + + tasks: + - name: Print debug message + debug: + msg: "Hallo, dies ist eine Debug-Nachricht von Ansible!" \ No newline at end of file