fix(shell_zsh): enable eza repository on apt-based
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
c4e3bcde62
commit
a6d99338d6
1 changed files with 13 additions and 0 deletions
|
@ -7,6 +7,19 @@
|
||||||
state: present
|
state: present
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
|
- name: Enable ‹eza› apt repository
|
||||||
|
ansible.builtin.deb822_repository:
|
||||||
|
name: eza
|
||||||
|
types: deb
|
||||||
|
uris: http://deb.gierens.de
|
||||||
|
suites: stable
|
||||||
|
components:
|
||||||
|
- main
|
||||||
|
signed_by: https://raw.githubusercontent.com/eza-community/eza/main/deb.asc
|
||||||
|
state: present
|
||||||
|
become: true
|
||||||
|
when: ansible_distribution in [ "Debian", "Ubuntu" ]
|
||||||
|
|
||||||
- name: Install eza and bat
|
- name: Install eza and bat
|
||||||
ansible.builtin.package:
|
ansible.builtin.package:
|
||||||
name:
|
name:
|
||||||
|
|
Loading…
Reference in a new issue