Release of EvoBSD 6.8.0 #37

Merged
jlecour merged 168 commits from dev into master 2020-10-23 12:13:36 +02:00
Showing only changes of commit 6613c70446 - Show all commits

View file

@ -5,20 +5,6 @@
name: "{{ user.name }}"
gid: "{{ user.uid }}"
- name: "User '{{ user.name }}' is present with legacy hash"
user:
state: present
name: '{{ user.name }}'
uid: '{{ user.uid }}'
password: "{{ user.password_hash_openbsd_legacy }}"
group: "{{ user.name }}"
groups: wheel
shell: /bin/ksh
append: true
when: ansible_distribution_version is version_compare("5.7",'<')
tags:
- admin
- name: "User '{{ user.name }}' is present"
user:
state: present
@ -29,7 +15,6 @@
groups: wheel
shell: /bin/ksh
append: true
when: ansible_distribution_version is version_compare("5.7",'>=')
tags:
- admin