Dot_Files/tasks/install-zathura.yml

27 lines
652 B
YAML
Raw Normal View History

2022-09-06 03:38:51 -05:00
- name: Install Zathura for ArchLinux
2023-02-08 06:56:36 -06:00
become: true
2022-09-06 03:38:51 -05:00
community.general.pacman:
2023-02-08 06:56:36 -06:00
name: zathura
2022-09-06 03:38:51 -05:00
state: present
when: ansible_facts.os_family == 'Archlinux'
- name: Install Zathura for Debian based systems
2023-02-08 06:56:36 -06:00
become: true
2022-09-06 03:38:51 -05:00
ansible.builtin.apt:
name: zathura
state: present
when: ansible_facts.os_family == 'Debian'
- name: Install Zathura for RedHat based systems
2023-02-08 06:56:36 -06:00
become: true
2022-09-06 03:38:51 -05:00
ansible.builtin.dnf:
name: zathura
state: present
when: ansible_facts.os_family == 'RedHat'
- name: Install Zathura for MacOS
community.general.homebrew:
name: zathura
state: present
when: ansible_facts.distribution == 'MacOSX'