Files
ansible-edge/roles/setup/tasks/pacstall_ledger.yml
2025-01-22 00:06:35 +01:00

20 lines
477 B
YAML

---
- name: Install Pacstall
ansible.builtin.shell: bash -c "$(curl -fsSL https://pacstall.dev/q/install)"
args:
creates: /usr/local/bin/pacstall # Adjust based on pacstall install path
- name: Add Ledger PPA
ansible.builtin.apt_repository:
repo: ppa:mbudde/ledger
state: present
- name: Update apt cache after adding Ledger PPA
ansible.builtin.apt:
update_cache: yes
- name: Install ledger
ansible.builtin.apt:
name: ledger
state: present