Move docker installation scripts to virtualization/Docker path. Splits out openalpr to seperate script. (#5676)

This commit is contained in:
Michaël Arnauts 2017-02-01 04:02:06 +01:00 committed by Paulus Schoutsen
parent 89ec752064
commit 8247acb7b9
10 changed files with 155 additions and 132 deletions

View file

@ -0,0 +1,17 @@
#!/bin/bash
# Sets up tellstick.
# Stop on errors
set -e
PACKAGES=(
# homeassistant.components.tellstick
libtelldus-core2
)
# Add Tellstick repository
echo "deb http://download.telldus.com/debian/ stable main" >> /etc/apt/sources.list.d/telldus.list
wget -qO - http://download.telldus.se/debian/telldus-public.key | apt-key add -
apt-get update
apt-get install -y --no-install-recommends ${PACKAGES[@]}