1
0
Fork 0

refactor: removed action related to admin_users task

This feature is system-related, not yunohost-related
This commit is contained in:
Arthur BOUDREAULT 2021-10-08 08:51:45 +00:00 committed by Christophe Chaudier
parent 952ed25a00
commit 9448739cf2
4 changed files with 1 additions and 24 deletions

View file

@ -44,11 +44,6 @@ yunohost:
firstname: John
lastname: Doe
domain: '{{ extra_domain.[1] }}'
admin_users:
- name: admin # user generated by yunohost as its admin user
key: ssh-rsa ... # key for admin user
- name: user1 # user generated by yunohost and defined by you
key: ssh-rsa ... # key for
```
Dependencies

View file

@ -6,4 +6,4 @@ yunohost:
ignore_dyndns: False
apps: ~
users: ~
admin_users:

View file

@ -1,14 +0,0 @@
---
- name: add sshkey for admin user
ansible.posix.authorized_key:
user: "{{ item.name }}"
state: present
key: "{{ item.key }}"
loop: "{{ yunohost.admin_users }}"
- name: Disable Password Authentication for ssh.usage
ansible.builtin.replace:
path: /etc/ssh/sshd_config
regexp: PasswordAuthentication
replace: 'PasswordAuthentication no\1'
when: yunohost.nopassword == true

View file

@ -45,10 +45,6 @@
ansible.builtin.include: users.yml
when: yunohost.users
- name: Add ssh for admin user
ansible.builtin.include: admin_users.yml
when: yunohost.admin_users is defined
- name: Install apps
ansible.builtin.include: apps.yml
when: yunohost.apps