refactor(packages): directly pipe python script into ansible
This commit is contained in:
parent
8945449613
commit
bc98c00950
4 changed files with 85 additions and 74 deletions
|
|
@ -117,11 +117,48 @@
|
|||
- shell: "rm -rf /etc/pacman.d/gnupg && pacman-key --init && pacman-key --populate archlinux"
|
||||
- shell: "mkdir -p {{ home }}/.cache/monakhos; echo -n $(date --iso-8601=d) > {{ home }}/.cache/monakhos/pacman_key_state"
|
||||
|
||||
# INSTALL from YAML
|
||||
- name: Install packages from YAML files (excluding AUR)
|
||||
# AUR SETUP
|
||||
- name: Create the aur_builder user
|
||||
become: yes
|
||||
ansible.builtin.user:
|
||||
name: aur_builder
|
||||
create_home: yes
|
||||
group: wheel
|
||||
|
||||
- name: Allow the `aur_builder` user to run `sudo pacman` without a password
|
||||
become: yes
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/sudoers.d/11-install-aur_builder
|
||||
line: 'aur_builder ALL=(ALL) NOPASSWD: /usr/bin/pacman'
|
||||
create: yes
|
||||
mode: 0644
|
||||
validate: 'visudo -cf %s'
|
||||
|
||||
- name: Install yay
|
||||
include_role:
|
||||
name: aur
|
||||
vars:
|
||||
packages:
|
||||
- yay-bin
|
||||
|
||||
- name: Stub
|
||||
file:
|
||||
path: "{{ home }}/.stub"
|
||||
state: touch
|
||||
|
||||
# INSTALL normal packages from YAML
|
||||
- name: Install non-AUR packages
|
||||
become: true
|
||||
community.general.pacman:
|
||||
name: "{{ (lookup('file', 'arch_packages.json') | from_json)['native'] }}" # the python script will return a list of packages
|
||||
name: "{{ lookup('pipe', ('cat arch_packages.yaml | python3 parse_arch_packages.py ' + item)) | from_json }}"
|
||||
with_items: "{{ packages_categories }}"
|
||||
|
||||
- name: Install AUR packages
|
||||
include_role:
|
||||
name: aur
|
||||
vars:
|
||||
packages: "{{ lookup('pipe', ('cat arch_packages.yaml | python3 parse_arch_packages.py --aur ' + item)) | from_json }}"
|
||||
with_items: "{{ packages_categories }}"
|
||||
|
||||
- name: Install sway
|
||||
include_role:
|
||||
|
|
@ -175,41 +212,10 @@
|
|||
src: fish/machine.fish
|
||||
dest: "{{ home }}/.config/fish/machine.fish"
|
||||
|
||||
- name: Create the aur_builder user
|
||||
become: yes
|
||||
ansible.builtin.user:
|
||||
name: aur_builder
|
||||
create_home: yes
|
||||
group: wheel
|
||||
|
||||
- name: Allow the `aur_builder` user to run `sudo pacman` without a password
|
||||
become: yes
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/sudoers.d/11-install-aur_builder
|
||||
line: 'aur_builder ALL=(ALL) NOPASSWD: /usr/bin/pacman'
|
||||
create: yes
|
||||
mode: 0644
|
||||
validate: 'visudo -cf %s'
|
||||
|
||||
- name: Setup xremap
|
||||
include_role:
|
||||
name: xremap
|
||||
|
||||
# AUR packages
|
||||
- name: Install yay
|
||||
import_role:
|
||||
name: aur
|
||||
vars:
|
||||
packages:
|
||||
- yay-bin
|
||||
|
||||
- name: Install AUR packages from YAML file
|
||||
become: true
|
||||
import_role:
|
||||
name: aur
|
||||
vars:
|
||||
packages: "{{ (lookup('file', 'arch_packages.json') | from_json)['aur'] }}"
|
||||
|
||||
# SYSTEMD user services
|
||||
- name: Setup systemd user services folder
|
||||
file:
|
||||
|
|
@ -315,7 +321,7 @@
|
|||
- name: Install pip packages
|
||||
community.general.pipx:
|
||||
name: "{{ item }}"
|
||||
loop: "{{ (lookup('file', 'pip_packages.json') | from_json)['native'] }}"
|
||||
with_items: "{{ lookup('pipe', 'cat pip_packages.yaml | python3 parse_arch_packages.py all') | from_json }}"
|
||||
|
||||
- name: Enable bluetooth service
|
||||
become: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue