Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 3870ad60 authored by Christophe Chaudier's avatar Christophe Chaudier :rocket:
Browse files

Merge branch '96-fix-ynh_setup-change-user-first-name-last-name-to-full-name' into 'main'

Resolve "fix(ynh_setup): change user first name / last name to full name"

Closes #96

See merge request !63
parents 30822d20 fec7f0a3
No related branches found
No related tags found
1 merge request!63Resolve "fix(ynh_setup): change user first name / last name to full name"
Pipeline #12448 passed with warnings
......@@ -65,8 +65,7 @@ ynh_ignore_dyndns_server: False
ynh_users:
- name: user1
pass: MYINSECUREPWD_PLZ_OVERRIDE_THIS
firstname: Jane
lastname: Doe
fullname: Jane DOE
mail_domain: domain.tld
```
......
......@@ -65,8 +65,7 @@ ynh_ignore_dyndns_server: False
ynh_users:
- name: user1
pass: MYINSECUREPWD_PLZ_OVERRIDE_THIS
firstname: Jane
lastname: Doe
fullname: Jane DOE
mail_domain: domain.tld
```
......
......@@ -47,6 +47,5 @@ ynh_ignore_dyndns_server: False
ynh_users: null
# - name: user1
# pass: p@ssw0rd
# firstname: Jane
# lastname: Doe
# fullname: Jane DOE
# mail_domain: domain.tld
......@@ -35,8 +35,7 @@
- name: Create missing Yunohost users
ansible.builtin.command:
yunohost user create "{{ item.name }}" \
-f "{{ item.firstname }}" \
-l "{{ item.lastname }}" \
-F "{{ item.fullname }}" \
-d "{{ item.mail_domain }}" \
-p "{{ item.pass }}"
loop: "{{ ynh_users }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment