mirror of
https://github.com/home-assistant/core.git
synced 2025-12-25 05:26:47 +00:00
Move docker installation scripts to virtualization/Docker path. Splits out openalpr to seperate script. (#5676)
This commit is contained in:
committed by
Paulus Schoutsen
parent
89ec752064
commit
8247acb7b9
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[@]}
|
||||
Reference in New Issue
Block a user