10 lines
156 B
YAML
10 lines
156 B
YAML
|
---
|
||
|
- hosts: all
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- name: set root gid to 0
|
||
|
become: true
|
||
|
ansible.builtin.user:
|
||
|
name: root
|
||
|
group: root
|