Browse Source

Update homeassistant-install.sh

shfmt
tteckster 2 years ago
parent
commit
c853c24a96
1 changed files with 13 additions and 13 deletions
  1. 13 13
      install/homeassistant-install.sh

+ 13 - 13
install/homeassistant-install.sh

@@ -5,7 +5,7 @@
 # License: MIT
 # License: MIT
 # https://github.com/tteck/Proxmox/raw/main/LICENSE
 # https://github.com/tteck/Proxmox/raw/main/LICENSE
 
 
-source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
+source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
 color
 color
 verb_ip6
 verb_ip6
 catch_errors
 catch_errors
@@ -21,10 +21,10 @@ msg_ok "Installed Dependencies"
 
 
 msg_info "Updating Python3"
 msg_info "Updating Python3"
 $STD apt-get install -y \
 $STD apt-get install -y \
-python3 \
-python3-dev \
-python3-pip \
-python3-venv
+  python3 \
+  python3-dev \
+  python3-pip \
+  python3-venv
 rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
 rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
 msg_ok "Updated Python3"
 msg_ok "Updated Python3"
 
 
@@ -44,14 +44,14 @@ msg_info "Installing Docker $DOCKER_LATEST_VERSION"
 DOCKER_CONFIG_PATH='/etc/docker/daemon.json'
 DOCKER_CONFIG_PATH='/etc/docker/daemon.json'
 mkdir -p $(dirname $DOCKER_CONFIG_PATH)
 mkdir -p $(dirname $DOCKER_CONFIG_PATH)
 if [ "$ST" == "yes" ]; then
 if [ "$ST" == "yes" ]; then
-VER=$(curl -s https://api.github.com/repos/containers/fuse-overlayfs/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
-cd /usr/local/bin
-curl -sSL -o fuse-overlayfs https://github.com/containers/fuse-overlayfs/releases/download/$VER/fuse-overlayfs-x86_64
-chmod 755 /usr/local/bin/fuse-overlayfs
-cd ~
-echo -e '{\n  "storage-driver": "fuse-overlayfs",\n  "log-driver": "journald"\n}' > /etc/docker/daemon.json
+  VER=$(curl -s https://api.github.com/repos/containers/fuse-overlayfs/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
+  cd /usr/local/bin
+  curl -sSL -o fuse-overlayfs https://github.com/containers/fuse-overlayfs/releases/download/$VER/fuse-overlayfs-x86_64
+  chmod 755 /usr/local/bin/fuse-overlayfs
+  cd ~
+  echo -e '{\n  "storage-driver": "fuse-overlayfs",\n  "log-driver": "journald"\n}' >/etc/docker/daemon.json
 else
 else
-echo -e '{\n  "log-driver": "journald"\n}' > /etc/docker/daemon.json
+  echo -e '{\n  "log-driver": "journald"\n}' >/etc/docker/daemon.json
 fi
 fi
 $STD sh <(curl -sSL https://get.docker.com)
 $STD sh <(curl -sSL https://get.docker.com)
 msg_ok "Installed Docker $DOCKER_LATEST_VERSION"
 msg_ok "Installed Docker $DOCKER_LATEST_VERSION"
@@ -88,7 +88,7 @@ $STD docker run -d \
   -v /etc/localtime:/etc/localtime:ro \
   -v /etc/localtime:/etc/localtime:ro \
   --net=host \
   --net=host \
   homeassistant/home-assistant:stable
   homeassistant/home-assistant:stable
-  mkdir /root/hass_config
+mkdir /root/hass_config
 msg_ok "Installed Home Assistant $CORE_LATEST_VERSION"
 msg_ok "Installed Home Assistant $CORE_LATEST_VERSION"
 
 
 motd_ssh
 motd_ssh