From d5704cc5f6da127c02a1f31c1990c7ecc2d528f6 Mon Sep 17 00:00:00 2001 From: Jamie Alexander Helmke <93094394+jamieahelmke@users.noreply.github.com> Date: Fri, 31 Oct 2025 15:09:40 +0100 Subject: [PATCH] Fix example.yml (Missing Newline/File End) --- ansible/playbooks/example.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible/playbooks/example.yml b/ansible/playbooks/example.yml index e9e21a6..57d6607 100644 --- a/ansible/playbooks/example.yml +++ b/ansible/playbooks/example.yml @@ -4,4 +4,5 @@ gather_facts: false tasks: - name: Test connection - ansible.builtin.ping: \ No newline at end of file + ansible.builtin.ping: +...