diff --git a/playbook.yaml b/playbook.yaml index d3bb78b..a4e6177 100644 --- a/playbook.yaml +++ b/playbook.yaml @@ -6,6 +6,7 @@ become: True roles: + - { role: bedrock-config} - { role: alpine} - { role: arch} - { role: packages-development} diff --git a/roles/bedrock-config/tasks/main.yaml b/roles/bedrock-config/tasks/main.yaml new file mode 100644 index 0000000..f86e57d --- /dev/null +++ b/roles/bedrock-config/tasks/main.yaml @@ -0,0 +1,14 @@ +--- + +- name: Change pmm's user interface to pacman + ansible.builtin.lineinfile: + path: /bedrock/etc/bedrock.conf + regexp: '^user-interface =' + line: user-interface = pacman + +- name: Change pmm's to allow non-system package managers + ansible.builtin.lineinfile: + path: /bedrock/etc/bedrock.conf + regexp: '^ignore-non-system-package-managers =' + line: ignore-non-system-package-managers = false +