20 lines
477 B
YAML
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
|