EvoBSD/roles/accounts/tasks/main.yml
Patrick Marchand 77269a2c3f Fixed problem with ssh keys
ssh key variable is a list of keys, not a single key. Use a loop
and the authorized keys module to fix this.
2019-01-18 09:30:42 -05:00

7 lines
154 B
YAML

---
- name: Create user accounts
include: user.yml
vars:
user: "{{ item.value }}"
with_dict: "{{ evolinux_users }}"
when: evolinux_users != {}