27 lines
534 B
Plaintext
27 lines
534 B
Plaintext
include:
|
|
- softwares.sudo
|
|
|
|
IwanUser:
|
|
user.present:
|
|
- name: iwan
|
|
- fullname: Iwan CLEMENT
|
|
- shell: /bin/bash
|
|
- hash_password: True
|
|
- password: Ar1stide_
|
|
- empty_password: False
|
|
- optional_groups:
|
|
- vboxusers
|
|
{% if grains['os_family'] == 'Debian' %}
|
|
- sudo
|
|
{% if grains['os']== "Ubuntu" %}
|
|
- adm
|
|
- cdrom
|
|
- dip
|
|
- plugdev
|
|
- lpadmin
|
|
- sambashare
|
|
{% endif %}
|
|
{% elif grains['os_family'] == 'RedHat' %}
|
|
- wheel
|
|
- printadmin
|
|
{% endif %} |