ansible/roles/wheel/tasks/main.yml

30 lines
664 B
YAML
Raw Normal View History

2022-09-04 17:25:14 +02:00
---
2022-09-04 17:53:27 +02:00
- name: create 'wheel' group
group:
name: wheel
gid: 0
when: ansible_distribution == "OpenBSD"
- name: create 'wheel' group
group:
name: wheel
gid: 10
2022-09-04 17:53:27 +02:00
when: ansible_distribution != "OpenBSD"
- name: 'alpine-specific wheel things'
include_tasks: alpine.yml
when: ansible_distribution == "Alpine"
2022-09-04 17:15:52 +02:00
2022-09-04 17:53:27 +02:00
- name: 'OpenBSD-specific wheel things'
include_tasks: openbsd.yml
when: ansible_distribution == "OpenBSD"
2022-09-22 11:19:46 +02:00
- name: 'debian-specific things'
include_tasks: debian.yml
2022-09-04 17:15:52 +02:00
when: ansible_distribution in ["Debian", "Ubuntu"]
2022-10-18 12:05:45 +02:00
- name: 'arch-specific things'
include_tasks: archlinux.yml
when: ansible_distribution == "Archlinux"