Added installation step for pacman-based systems

This commit is contained in:
Michele Cereda
2022-07-01 10:30:37 +02:00
parent f2f0e3c288
commit 2ea6ea6269

View File

@@ -48,6 +48,12 @@
state: present
install_options: 'appdir=~/Applications'
register: keybase_installed
- name: Install Keybase through Pacman
when: ansible_pkg_mgr == 'pacman'
become: true
ansible.builtin.package:
name: 'keybase-gui'
register: keybase_installed
- name: Install Keybase through Zypper
when: ansible_pkg_mgr == 'zypper'
become: true