Merge branch '1-remove-admin-users-feature' into 'master'
✅Resolve "remove admin users feature" Closes #1 See merge request lydra/yunohost/ansible-yunohost!2
This commit is contained in:
commit
669d3ebbfb
4 changed files with 1 additions and 24 deletions
|
@ -44,11 +44,6 @@ yunohost:
|
||||||
firstname: John
|
firstname: John
|
||||||
lastname: Doe
|
lastname: Doe
|
||||||
domain: '{{ extra_domain.[1] }}'
|
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
|
Dependencies
|
||||||
|
|
|
@ -6,4 +6,4 @@ yunohost:
|
||||||
ignore_dyndns: False
|
ignore_dyndns: False
|
||||||
apps: ~
|
apps: ~
|
||||||
users: ~
|
users: ~
|
||||||
admin_users:
|
|
||||||
|
|
|
@ -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
|
|
|
@ -45,10 +45,6 @@
|
||||||
ansible.builtin.include: users.yml
|
ansible.builtin.include: users.yml
|
||||||
when: yunohost.users
|
when: yunohost.users
|
||||||
|
|
||||||
- name: Add ssh for admin user
|
|
||||||
ansible.builtin.include: admin_users.yml
|
|
||||||
when: yunohost.admin_users is defined
|
|
||||||
|
|
||||||
- name: Install apps
|
- name: Install apps
|
||||||
ansible.builtin.include: apps.yml
|
ansible.builtin.include: apps.yml
|
||||||
when: yunohost.apps
|
when: yunohost.apps
|
||||||
|
|
Loading…
Reference in a new issue