blob: 7e1669f1e23736b61e953e217c612bfc0e70ec40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
---
- name: install python3 apt packages
become: yes
apt: name="python3"
notify: restart hap-nodejs service
- name: install python-shell npm packages
become: yes
npm: name="python-shell" global="yes"
notify: restart hap-nodejs service
- name: install door accessory
become: yes
copy:
src: "../../../src/Door_accessory.js"
dest: "{{hap_dest}}/accessories/Door_accessory.js"
owner: "{{hap_user}}"
group: "{{hap_user}}"
notify: restart hap-nodejs service
- name: create python dir
become: yes
file:
path: "{{hap_dest}}/python"
state: "directory"
owner: "{{hap_user}}"
group: "{{hap_user}}"
- name: install doord.py
become: yes
copy:
src: "../../../src/doord.py"
dest: "{{hap_dest}}/python/doord.py"
owner: "{{hap_user}}"
group: "{{hap_user}}"
mode: "0755"
notify: restart hap-nodejs service
|