16 lines
462 B
YAML
16 lines
462 B
YAML
- name: Download ripgrep deb
|
|
ansible.builtin.get_url:
|
|
url: https://github.com/BurntSushi/ripgrep/releases/download/14.1.0/ripgrep_14.1.0-1_{{ aarch }}.deb
|
|
dest: "/tmp/ripgrep_14.1.0-1_{{ aarch }}.deb"
|
|
|
|
- name: Install ripgrep
|
|
ansible.builtin.apt:
|
|
deb: "/tmp/ripgrep_14.1.0-1_{{ aarch }}.deb"
|
|
state: present
|
|
become: true
|
|
|
|
- name: Remove ripgrep deb
|
|
ansible.builtin.file:
|
|
path: "/tmp/ripgrep_14.1.0-1_{{ aarch }}.deb"
|
|
state: absent
|