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 4012a014ce - Show all commits

View file

@ -5,6 +5,20 @@
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
@ -15,6 +29,7 @@
groups: wheel
shell: /bin/ksh
append: true
when: ansible_distribution_version is version_compare("5.7",'>=')
tags:
- admin