Move docker installation scripts to virtualization/Docker path. Splits out openalpr to seperate script. (#5676)
This commit is contained in:
parent
89ec752064
commit
8247acb7b9
10 changed files with 155 additions and 132 deletions
17
virtualization/Docker/scripts/tellstick
Executable file
17
virtualization/Docker/scripts/tellstick
Executable 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[@]}
|
Loading…
Add table
Add a link
Reference in a new issue