17 lines
426 B
YAML
17 lines
426 B
YAML
|
- hosts: "{{ hostlist }}"
|
||
|
tasks:
|
||
|
- name: Add the user polesz
|
||
|
become: true
|
||
|
user:
|
||
|
name: polesz
|
||
|
comment: POLONKAI Gergely
|
||
|
uid: 1000
|
||
|
shell: /usr/bin/fish
|
||
|
state: present
|
||
|
- name: Add user polesz to some extra groups
|
||
|
become: true
|
||
|
user:
|
||
|
name: polesz
|
||
|
groups: cdrom,dialout,games,kvm,libvirt,pkg-build,printadmin,video,wheel
|
||
|
append: true
|