ansible/roles/wheel/tasks/main.yml

14 lines
283 B
YAML
Raw Normal View History

2022-09-04 17:25:14 +02:00
---
- name: create 'wheel' group
group:
name: wheel
gid: 10
- name: 'alpine-specific wheel things'
include_tasks: alpine.yml
when: ansible_distribution == "Alpine"
2022-09-04 17:15:52 +02:00
- name: setup with sudo
include_tasks: sudo.yml
when: ansible_distribution in ["Debian", "Ubuntu"]