Compare commits

...

4 Commits

5 changed files with 37 additions and 2 deletions

View File

@ -6,6 +6,7 @@
become: True become: True
roles: roles:
- { role: bedrock-config}
- { role: alpine} - { role: alpine}
- { role: arch} - { role: arch}
- { role: packages-development} - { role: packages-development}

View File

@ -14,5 +14,7 @@
- name: Enable https on the repositories - name: Enable https on the repositories
ansible.builtin.shell: ansible.builtin.replace:
cmd: sed -i 's/http:\/\//https:\/\//g' /bedrock/strata/alpine/etc/apk/repositories path: /bedrock/strata/alpine/etc/apk/repositories
regexp: '^https?://'
replace: 'https://'

View File

@ -13,3 +13,15 @@
- name: Install yay - name: Install yay
aur: name=yay aur: name=yay
become_user: daniel become_user: daniel
- name: Enable pacman color
ansible.builtin.lineinfile:
path: /bedrock/strata/arch/etc/pacman.conf
regexp: '^#? ?Color'
line: Color
- name: Enable pacman parallel downloads
ansible.builtin.lineinfile:
path: /bedrock/strata/arch/etc/pacman.conf
regexp: '^#? ?ParallelDownloads ?= ?'
line: ParallelDownloads = 5

View File

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

View File

@ -5,3 +5,9 @@
- name: Install Blender - name: Install Blender
pacman: name=blender pacman: name=blender
- name: Install Pixelorama
aur: name=pixelorama-bin
become_user: daniel