From 117023984e2073a07908c613240a3903afb1ec26 Mon Sep 17 00:00:00 2001 From: tteckster Date: Wed, 2 Aug 2023 20:10:12 -0400 Subject: [PATCH] Update homeassistant.sh New release issues, revert to 2.23.0 --- ct/homeassistant.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ct/homeassistant.sh b/ct/homeassistant.sh index 759eca18..51a46299 100644 --- a/ct/homeassistant.sh +++ b/ct/homeassistant.sh @@ -100,7 +100,8 @@ function update_script() { if [ "$UPD" == "4" ]; then IP=$(hostname -I | awk '{print $1}') msg_info "Installing FileBrowser" - curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash &>/dev/null + RELEASE=$(curl -fsSL https://api.github.com/repos/filebrowser/filebrowser/releases/latest | grep -o '"tag_name": ".*"' | sed 's/"//g' | sed 's/tag_name: //g') + curl -fsSL https://github.com/filebrowser/filebrowser/releases/download/v2.23.0/linux-amd64-filebrowser.tar.gz | tar -xzv -C /usr/local/bin &>/dev/null filebrowser config init -a '0.0.0.0' &>/dev/null filebrowser config set -a '0.0.0.0' &>/dev/null filebrowser users add admin changeme --perm.admin &>/dev/null