From fdacbec5ea6a3e7f82b9d7dd64543939ffe30b79 Mon Sep 17 00:00:00 2001 From: Caleb Braaten Date: Tue, 5 Mar 2024 10:18:16 -0800 Subject: [PATCH] Fix Playbook Title Typo --- host_init/5-traefik.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/host_init/5-traefik.yml b/host_init/5-traefik.yml index 373b09b..83a1bcd 100644 --- a/host_init/5-traefik.yml +++ b/host_init/5-traefik.yml @@ -1,12 +1,12 @@ -- name: Install Caddy on Alpine Linux +- name: Install Traefik on Alpine Linux hosts: all tasks: - name: Enable community packages ansible.builtin.lineinfile: path: /etc/apk/repositories - regexp: '^#http://dl-cdn.alpinelinux.org/alpine/v3.18/community' - line: 'http://dl-cdn.alpinelinux.org/alpine/v3.18/community' + regexp: "^#http://dl-cdn.alpinelinux.org/alpine/v3.18/community" + line: "http://dl-cdn.alpinelinux.org/alpine/v3.18/community" state: present - name: Update apk packages