Dot_Files/tasks/install-shellcheck.yml

28 lines
675 B
YAML
Raw Normal View History

2022-08-06 20:23:56 -05:00
- name: Install Shellcheck for Arch
become: true
community.general.pacman:
name: shellcheck
state: present
when: ansible_facts.distribution == 'Archlinux'
2022-08-06 20:23:56 -05:00
- name: Install Shellcheck for MacOS
community.general.homebrew:
name: shellcheck
state: present
when: ansible_facts.distribution == 'MacOSX'
- name: Install Shellcheck for Debian based systems
become: true
ansible.builtin.apt:
name: shellcheck
state: present
when: ansible_facts.os_family == 'Debian'
- name: Install Shellcheck for RedHat based systems
become: true
ansible.builtin.dnf:
name: shellcheck
state: present
when: ansible_facts.os_family == 'RedHat'