This repository has been archived by the owner on Mar 21, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
fabfile.py
411 lines (339 loc) · 15.2 KB
/
fabfile.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
########################################
# Fabfile to:
# - deploy supporting HA components
# - deploy HA
########################################
# Import Fabric's API module
from fabric.api import *
import fabric.contrib.files
import time
import os
env.hosts = ['localhost']
env.user = "pi"
env.password = "raspberry"
env.warn_only = True
pi_hardware = os.uname()[4]
#######################
## Core server setup ##
#######################
def install_start():
""" Notify of install start """
print("""
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,, ,,,,, ,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,, ,,,,,,, ,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,, ,,,,,,,,, ,,, ,,,,,,,,,,
,,,,,,,,,,,,,,,, ,,, ,,, ,, ,,,,,,,,,,
,,,,,,,,,,,,,,, ,,, ,,, , ,,,,,,,,,,
,,,,,,,,,,,,,, ,,, ,,, ,,,,,,,,,,
,,,,,,,,,,,,, ,,,,,,, ,,,,,,,,,,
,,,,,,,,,,,, ,,,,, ,,,,,,,,,,
,,,,,,,,,,, ,,, ,,,,,,,,,,
,,,,,,,,,, ,,, ,,,,,,,,,
,,,,,,,,, ,,, ,,, ,,, ,,,,,,,,
,,,,,,,, ,,,,,,, ,,, ,,,,,,, ,,,,,,,
,,,,,,, ,,,,,,,,, ,,, ,,,,,,,,, ,,,,,,
,,,,,, ,,, ,,, ,,, ,,, ,,, ,,,,,
,,,,, ,,, ,,, ,,, ,,, ,,, ,,,,
,,,,,,,,,,, ,,, ,,, ,,, ,,, ,,, ,,,,,,,,,,
,,,,,,,,,,, ,,,,,,,, ,,, ,,,,,,,, ,,,,,,,,,,
,,,,,,,,,,, ,,,,,, ,,, ,,,,,, ,,,,,,,,,,
,,,,,,,,,,, ,,,,, ,,, ,,,,, ,,,,,,,,,,
,,,,,,,,,,, ,,,, ,,,, ,,,,, ,,,,,,,,,,
,,,,,,,,,,, ,,,, ,,, ,,,, ,,,,,,,,,,
,,,,,,,,,,, ,,,,,,,,,,, ,,,,,,,,,,
,,,,,,,,,,, ,,,,,,,,, ,,,,,,,,,,
,,,,,,,,,,, ,,,,,,, ,,,,,,,,,,
,,,,,,,,,,, ,,,,, ,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,, ,,,,,,,,,,
,,,,,,,,,,, Welcome to the Home Assistant ,,,,,,,,,,
,,,,,,,,,,, Raspberry Pi All-In-One Installer ,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
""")
print("* Warning *")
print("""The primary use of this installer is for a new, unconfigured Home Assistant deployment.
Running the installer command straight from the Getting Started guide found on Github, will overwrite any existing configs.
Additional commands for upgrading should be run seperately. Please see the Github page for useage instructions""")
time.sleep(10)
print("Installer is starting...")
print("Your Raspberry Pi will reboot when the installer is complete.")
time.sleep(5)
def update_upgrade():
""" Update OS """
sudo("apt-get update")
sudo("apt-get upgrade -y")
def setup_dirs():
""" Create all needed directories and change ownership """
with cd("/srv"):
sudo("mkdir homeassistant")
sudo("chown homeassistant:homeassistant homeassistant")
with cd("homeassistant"):
sudo("mkdir -p src")
sudo("chown homeassistant:homeassistant src")
with cd("/home"):
sudo("mkdir -p homeassistant")
sudo("mkdir -p /home/homeassistant/.homeassistant")
sudo("chown homeassistant:homeassistant homeassistant")
with cd("/var/lib/"):
sudo("mkdir mosquitto")
sudo("chown mosquitto:mosquitto mosquitto")
def new_user(admin_username, admin_password):
env.user = 'root'
# Create the admin group and add it to the sudoers file
admin_group = 'admin'
runcmd('addgroup {group}'.format(group=admin_group))
runcmd('echo "%{group} ALL=(ALL) ALL" >> /etc/sudoers'.format(
group=admin_group))
# Create the new admin user (default group=username); add to admin group
runcmd('adduser {username} --disabled-password --gecos ""'.format(
username=pi))
runcmd('adduser {username} {group}'.format(
username=admin_username,
group=admin_group))
# Set the password for the new admin user
runcmd('echo "{username}:{password}" | chpasswd'.format(
username=admin_username,
password=admin_password))
def setup_users():
""" Create service users, etc """
sudo("useradd mosquitto")
sudo("useradd --system homeassistant")
sudo("usermod -G dialout -a homeassistant")
sudo("usermod -G gpio -a homeassistant")
sudo("usermod -G video -a homeassistant")
sudo("usermod -d /home/homeassistant homeassistant")
def install_syscore():
""" Download and install Host Dependencies. """
sudo("aptitude install -y build-essential")
sudo("aptitude install -y python-pip")
sudo("aptitude install -y python-dev")
sudo("aptitude install -y python3")
sudo("aptitude install -y python3-dev")
sudo("aptitude install -y python3-pip")
sudo("aptitude install -y python3-sphinx")
sudo("aptitude install -y python3-setuptools")
sudo("aptitude install -y git")
sudo("aptitude install -y libssl-dev")
sudo("aptitude install -y cmake")
sudo("aptitude install -y libc-ares-dev")
sudo("aptitude install -y uuid-dev")
sudo("aptitude install -y daemon")
sudo("aptitude install -y curl")
sudo("aptitude install -y libgnutls28-dev")
sudo("aptitude install -y libgnutlsxx28")
sudo("aptitude install -y libgnutls-dev")
sudo("aptitude install -y nmap")
sudo("aptitude install -y net-tools")
sudo("aptitude install -y sudo")
sudo("aptitude install -y libglib2.0-dev")
sudo("aptitude install -y cython3")
sudo("aptitude install -y libudev-dev")
sudo("aptitude install -y libxrandr-dev")
sudo("aptitude install -y swig")
def install_pycore():
""" Download and install VirtualEnv """
sudo("pip3 install --upgrade pip")
sudo("pip3 install virtualenv")
def create_venv():
""" Create home-assistant VirtualEnv """
with cd("/srv/homeassistant"):
sudo("virtualenv -p python3 homeassistant_venv", user="homeassistant")
#######################################################
## Build and Install Applications without VirtualEnv ##
#######################################################
def setup_homeassistant_novenv():
""" Install Home-Assistant """
sudo("pip3 install --upgrade pip", user="homeassistant")
sudo("pip3 install homeassistant", user="homeassistant")
def setup_openzwave_novenv():
""" Install python-openzwave """
sudo("pip3 install --upgrade cython==0.24.1", user="homeassistant")
with cd("/srv/homeassistant/src"):
sudo("git clone https://github.com/OpenZWave/python-openzwave.git", user="homeassistant")
with cd("python-openzwave"):
sudo("git checkout python3", user="homeassistant")
sudo("make build", user="homeassistant")
sudo("make install", user="homeassistant")
def setup_services_novenv():
""" Enable applications to start at boot via systemd """
hacfg="""
mqtt:
broker: 127.0.0.1
port: 1883
client_id: home-assistant-1
username: pi
password: raspberry
"""
with cd("/etc/systemd/system/"):
put("home-assistant_novenv.service", "home-assistant_novenv.service", use_sudo=True)
with settings(sudo_user='homeassistant'):
sudo("/srv/homeassistant/homeassistant_venv/bin/hass --script ensure_config --config /home/homeassistant/.homeassistant")
fabric.contrib.files.append("/home/homeassistant/.homeassistant/configuration.yaml", hacfg, use_sudo=True)
sudo("systemctl enable home-assistant_novenv.service")
sudo("systemctl daemon-reload")
def setup_libcec_novenv():
""" Install libcec according to https://github.com/Pulse-Eight/libcec/blob/master/docs/README.raspberrypi.md """
with cd("/srv/homeassistant/src"):
sudo("git clone https://github.com/Pulse-Eight/platform.git", user="homeassistant")
sudo("mkdir platform/build", user="homeassistant")
with cd("platform/build"):
sudo("cmake ..", user="homeassistant")
sudo("make", user="homeassistant")
sudo("make install")
sudo("git clone https://github.com/Pulse-Eight/libcec.git", user="homeassistant")
sudo("mkdir libcec/build", user="homeassistant")
with cd("libcec/build"):
sudo("cmake -DRPI_INCLUDE_DIR=/opt/vc/include -DRPI_LIB_DIR=/opt/vc/lib ..", user="homeassistant")
sudo("make -j4", user="homeassistant")
sudo("make install")
sudo("ldconfig")
####################################
## Build and Install Applications ##
####################################
def setup_mosquitto():
""" Install Mosquitto w/ websockets"""
with cd("/srv/homeassistant/src"):
sudo("curl -O http://repo.mosquitto.org/debian/mosquitto-repo.gpg.key")
sudo("apt-key add mosquitto-repo.gpg.key")
with cd("/etc/apt/sources.list.d/"):
sudo("curl -O http://repo.mosquitto.org/debian/mosquitto-jessie.list")
sudo("apt-get update")
sudo("apt-cache search mosquitto")
sudo("apt-get install -y mosquitto mosquitto-clients")
with cd("/etc/mosquitto"):
put("mosquitto.conf", "mosquitto.conf", use_sudo=True)
sudo("touch pwfile")
sudo("chown mosquitto: pwfile")
sudo("chmod 0600 pwfile")
sudo("sudo mosquitto_passwd -b pwfile pi raspberry")
sudo("sudo chown mosquitto: mosquitto.conf")
def setup_homeassistant():
""" Activate Virtualenv, Install Home-Assistant """
sudo("source /srv/homeassistant/homeassistant_venv/bin/activate && pip3 install homeassistant", user="homeassistant")
with cd("/home/homeassistant/"):
sudo("chown -R homeassistant:homeassistant /home/homeassistant/")
def setup_openzwave():
""" Activate Virtualenv, Install python-openzwave"""
sudo("source /srv/homeassistant/homeassistant_venv/bin/activate && pip3 install --upgrade cython==0.24.1", user="homeassistant")
with cd("/srv/homeassistant/src"):
sudo("git clone --branch v0.3.3 https://github.com/OpenZWave/python-openzwave.git", user="homeassistant")
with cd("python-openzwave"):
sudo("git checkout python3", user="homeassistant")
sudo("source /srv/homeassistant/homeassistant_venv/bin/activate && make build", user="homeassistant")
sudo("source /srv/homeassistant/homeassistant_venv/bin/activate && make install", user="homeassistant")
def setup_libcec():
setup_libcec_novenv()
sudo("ln -s /usr/local/lib/python3.4/dist-packages/cec /srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages", user="homeassistant")
def setup_libmicrohttpd():
""" Build and install libmicrohttpd """
with cd("/srv/homeassistant/src"):
sudo("mkdir libmicrohttpd")
sudo("chown homeassistant:homeassistant libmicrohttpd")
sudo("curl -O ftp://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.19.tar.gz", user="homeassistant")
sudo("tar zxvf libmicrohttpd-0.9.19.tar.gz")
with cd("libmicrohttpd-0.9.19"):
sudo("./configure")
sudo("make")
sudo("make install")
def setup_openzwave_controlpanel():
""" Build and Install open-zwave-control-panel """
with cd("/srv/homeassistant/src"):
sudo("git clone https://github.com/OpenZWave/open-zwave-control-panel.git", user="homeassistant")
with cd("open-zwave-control-panel"):
put("Makefile", "Makefile", use_sudo=True)
sudo("make")
if pi_hardware == "armv7l":
sudo("ln -sd /srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/libopenzwave-0.3.3-py3.4-linux-armv7l.egg/config")
else:
sudo("ln -sd /srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/libopenzwave-0.3.3-py3.4-linux-armv**6**l.egg/config")
sudo("chown -R homeassistant:homeassistant /srv/homeassistant/src/open-zwave-control-panel")
def setup_services():
""" Enable applications to start at boot via systemd """
with cd("/etc/systemd/system/"):
put("home-assistant.service", "home-assistant.service", use_sudo=True)
with settings(sudo_user='homeassistant'):
sudo("/srv/homeassistant/homeassistant_venv/bin/hass --script ensure_config --config /home/homeassistant/.homeassistant")
hacfg="""
mqtt:
broker: 127.0.0.1
port: 1883
client_id: home-assistant-1
username: pi
password: raspberry
"""
fabric.contrib.files.append("/home/homeassistant/.homeassistant/configuration.yaml", hacfg, use_sudo=True)
sudo("systemctl enable home-assistant.service")
sudo("systemctl daemon-reload")
sudo("systemctl start home-assistant.service")
def upgrade_homeassistant():
""" Activate Venv, and upgrade Home Assistant to latest version """
sudo("source /srv/homeassistant/homeassistant_venv/bin/activate && pip3 install homeassistant --upgrade", user="homeassistant")
#############
## Deploy! ##
#############
def deploy():
## Install Start ##
install_start()
## Initial Update and Upgrade ##
update_upgrade()
## Setup service accounts ##
setup_users()
## Setup directories ##
setup_dirs()
## Install dependencies ##
install_syscore()
install_pycore()
## Create VirtualEnv ##
create_venv()
## Build and Install Mosquitto ##
setup_mosquitto()
## Activate venv, install Home-Assistant ##
setup_homeassistant()
## Make apps start at boot ##
setup_services()
## Activate venv, build and install python-openzwave ##
setup_openzwave()
## Build and install libmicrohttpd ##
setup_libmicrohttpd()
## Build and install open-zwave-control-panel ##
setup_openzwave_controlpanel()
## Build and install libcec ##
setup_libcec()
## Reboot the system ##
reboot()
def deploy_novenv():
## Install Start ##
install_start()
## Initial Update and Upgrade ##
update_upgrade()
## Setup service accounts ##
setup_users()
## Setup directories ##
setup_dirs()
## Install dependencies ##
install_syscore()
## Build and Install Mosquitto ##
setup_mosquitto()
## Activate venv, install Home-Assistant ##
setup_homeassistant_novenv()
## Make apps start at boot ##
setup_services_novenv()
## Activate venv, build and install python-openzwave ##
setup_openzwave_novenv()
## Build and install libmicrohttpd ##
setup_libmicrohttpd()
## Build and install open-zwave-control-panel ##
setup_openzwave_controlpanel()
## Build and install libcec ##
setup_libcec_novenv()
## Reboot the system ##
reboot()