27 lines
541 B
Plaintext
27 lines
541 B
Plaintext
include:
|
|
- softwares.sudo
|
|
|
|
AnaisUser:
|
|
user.present:
|
|
- name: anais
|
|
- fullname: Anais L
|
|
- uid: 4523
|
|
- shell: /bin/bash
|
|
# - hash_password: True
|
|
# - password: Monpremiermotdepasse
|
|
- empty_password: True
|
|
- optional_groups:
|
|
{% 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 %} |