Release of EvoBSD 6.8.0 #37

Merged
jlecour merged 168 commits from dev into master 2020-10-23 12:13:36 +02:00
2 changed files with 13 additions and 0 deletions
Showing only changes of commit 10d56cad1e - Show all commits

View file

@ -4,6 +4,11 @@
name: "{{ evolinux_sudo_group }}"
system: true
- name: "Create {{ evolinux_ssh_group }}"
group:
name: "{{ evolinux_ssh_group }}"
system: true
- name: Create user accounts
include: user.yml
vars:

View file

@ -30,3 +30,11 @@
append: true
tags:
- admin
- name: "Add {{ user.name }} to {{ evolinux_ssh_group }} group"
user:
name: "{{ user.name }}"
groups: "{{ evolinux_ssh_group }}"
append: true
tags:
- admin