finalize nextcloud roles
This commit is contained in:
parent
5b2447b867
commit
a330f2cedf
@ -9,4 +9,4 @@ hass_SQl_target_file: /
|
|||||||
hass_db_password: toto
|
hass_db_password: toto
|
||||||
hass_repo: git
|
hass_repo: git
|
||||||
hass_repo_branch: master
|
hass_repo_branch: master
|
||||||
hass_user: []
|
hass_user: []
|
||||||
|
@ -35,9 +35,10 @@
|
|||||||
become: yes
|
become: yes
|
||||||
|
|
||||||
- name: add {{user.name}} to hass group
|
- name: add {{user.name}} to hass group
|
||||||
|
become: true
|
||||||
user:
|
user:
|
||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
groups: docker
|
groups: hass
|
||||||
append: true
|
append: true
|
||||||
with_items: "{{ hass_user }}"
|
with_items: "{{ hass_user }}"
|
||||||
|
|
||||||
@ -65,10 +66,11 @@
|
|||||||
- name: install conf file
|
- name: install conf file
|
||||||
git:
|
git:
|
||||||
dest: "{{hass_conf_folder}}" # required. The path of where the repository should be checked out. This parameter is required, unless C(clone) is set to C(no).
|
dest: "{{hass_conf_folder}}" # required. The path of where the repository should be checked out. This parameter is required, unless C(clone) is set to C(no).
|
||||||
repo: "{{hass_repo}}" # required. git, SSH, or HTTP(S) protocol address of the git repository.
|
repo: "{{hass_repo}}" # required. git, SSH, or HTTP(S) protocol address of the git repository.
|
||||||
clone: yes # not required. If C(no), do not clone the repository if it does not exist locally
|
clone: yes # not required. If C(no), do not clone the repository if it does not exist locally
|
||||||
version: "{{hass_repo_branch}}"
|
version: "{{hass_repo_branch}}"
|
||||||
notify: restart hass
|
notify: restart hass
|
||||||
|
become: true
|
||||||
when: hass_repo_exist.stat.exists == false
|
when: hass_repo_exist.stat.exists == false
|
||||||
|
|
||||||
- name: change owner
|
- name: change owner
|
||||||
|
Loading…
Reference in New Issue
Block a user