Fix Playbook Title Typo

This commit is contained in:
Caleb Braaten 2024-03-05 10:18:16 -08:00
parent 16bb096e34
commit fdacbec5ea

View File

@ -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