Skip to content
Snippets Groups Projects
Commit 238884df authored by Paulus Schoutsen's avatar Paulus Schoutsen Committed by GitHub
Browse files

Revert gactions in Docker (#10115)

parent 6da08dea
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,6 @@ LABEL maintainer="Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>" ...@@ -12,7 +12,6 @@ LABEL maintainer="Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>"
#ENV INSTALL_LIBCEC no #ENV INSTALL_LIBCEC no
#ENV INSTALL_PHANTOMJS no #ENV INSTALL_PHANTOMJS no
#ENV INSTALL_SSOCR no #ENV INSTALL_SSOCR no
#ENV INSTALL_GACTION no
VOLUME /config VOLUME /config
......
...@@ -13,7 +13,6 @@ LABEL maintainer="Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>" ...@@ -13,7 +13,6 @@ LABEL maintainer="Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>"
#ENV INSTALL_PHANTOMJS no #ENV INSTALL_PHANTOMJS no
#ENV INSTALL_COAP no #ENV INSTALL_COAP no
#ENV INSTALL_SSOCR no #ENV INSTALL_SSOCR no
#ENV INSTALL_GACTION no
VOLUME /config VOLUME /config
......
#!/bin/bash
# Sets up gactions for the google_assistant component.
# Stop on errors
set -e
curl -LSO https://dl.google.com/gactions/updates/bin/linux/amd64/gactions/gactions
mv gactions /usr/bin/gactions
chmod +x /usr/bin/gactions
/usr/bin/gactions -V
...@@ -10,7 +10,6 @@ INSTALL_FFMPEG="${INSTALL_FFMPEG:-yes}" ...@@ -10,7 +10,6 @@ INSTALL_FFMPEG="${INSTALL_FFMPEG:-yes}"
INSTALL_LIBCEC="${INSTALL_LIBCEC:-yes}" INSTALL_LIBCEC="${INSTALL_LIBCEC:-yes}"
INSTALL_PHANTOMJS="${INSTALL_PHANTOMJS:-yes}" INSTALL_PHANTOMJS="${INSTALL_PHANTOMJS:-yes}"
INSTALL_SSOCR="${INSTALL_SSOCR:-yes}" INSTALL_SSOCR="${INSTALL_SSOCR:-yes}"
INSTALL_GACTION="${INSTALL_GACTION:-yes}"
# Required debian packages for running hass or components # Required debian packages for running hass or components
PACKAGES=( PACKAGES=(
...@@ -63,10 +62,6 @@ if [ "$INSTALL_SSOCR" == "yes" ]; then ...@@ -63,10 +62,6 @@ if [ "$INSTALL_SSOCR" == "yes" ]; then
virtualization/Docker/scripts/ssocr virtualization/Docker/scripts/ssocr
fi fi
if [ "$INSTALL_GACTION" == "yes" ]; then
virtualization/Docker/scripts/gactions
fi
# Remove packages # Remove packages
apt-get remove -y --purge ${PACKAGES_DEV[@]} apt-get remove -y --purge ${PACKAGES_DEV[@]}
apt-get -y --purge autoremove apt-get -y --purge autoremove
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment