aboutsummaryrefslogtreecommitdiff
path: root/tasks/install.yml
blob: 72787c05b988c87b64d46cc1192f05502ece0d7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- name: 'Install Nginx [Void}'
  xbps:
    name: nginx
    state: present
  when: ansible_facts['distribution'].lower() == "void"
- name: 'Install Nginx [Alpine]'
  apk:
    name: nginx
    state: present
  when: ansible_facts['distribution'].lower() == "alpine"
- name: 'Install Nginx [Ubuntu]'
  apt:
    name: nginx
    state: present
  when: ansible_facts['distribution'].lower() == "ubuntu"