hass-core/virtualization/Docker/scripts/tellstick
Tor Arne Vestbø f5da0e341c tellstick: Add socat to package dependencies (#24531)
Otherwise the tellstick component will fail when used with a
remote host running tellcore-net.

Fixes #24113
2019-06-19 09:23:29 -07:00

17 lines
418 B
Bash
Executable file

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