forked from forkanization/Proxmox-arm64
Port ErsatzTV to ARM64
This commit is contained in:
@@ -87,6 +87,7 @@ If you would like to offer support, I would appreciate a star on the repository,
|
|||||||
| Dockge | ☑️ | |
|
| Dockge | ☑️ | |
|
||||||
| Emby | ☑️ | |
|
| Emby | ☑️ | |
|
||||||
| EMQX | ☑️ | |
|
| EMQX | ☑️ | |
|
||||||
|
| ErsatzTV | ⭕ | |
|
||||||
| ESPHome | ☑️ | |
|
| ESPHome | ☑️ | |
|
||||||
| Fhem | ☑️ | |
|
| Fhem | ☑️ | |
|
||||||
| FlowiseAI | ❌ | NPM Error. [Use Docker image](https://docs.frigate.video/frigate/installation/). |
|
| FlowiseAI | ❌ | NPM Error. [Use Docker image](https://docs.frigate.video/frigate/installation/). |
|
||||||
|
|||||||
+3
-3
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
|
source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2024 tteck
|
# Copyright (c) 2021-2024 tteck
|
||||||
# Author: tteck
|
# Author: tteck
|
||||||
# Co-Author: MickLesk (Canbiz)
|
# Co-Author: MickLesk (Canbiz)
|
||||||
@@ -71,8 +71,8 @@ if [ -d /opt/ErsatzTV/ErsatzTV_bak ]; then
|
|||||||
rm -rf /opt/ErsatzTV/ErsatzTV_bak
|
rm -rf /opt/ErsatzTV/ErsatzTV_bak
|
||||||
fi
|
fi
|
||||||
mv /opt/ErsatzTV/ErsatzTV /opt/ErsatzTV/ErsatzTV_bak
|
mv /opt/ErsatzTV/ErsatzTV /opt/ErsatzTV/ErsatzTV_bak
|
||||||
wget -qO- "https://github.com/ErsatzTV/ErsatzTV/releases/download/${RELEASE}/ErsatzTV-${RELEASE}-linux-x64.tar.gz" | tar -xz -C /opt
|
wget -qO- "https://github.com/ErsatzTV/ErsatzTV/releases/download/${RELEASE}/ErsatzTV-${RELEASE}-linux-arm64.tar.gz" | tar -xz -C /opt
|
||||||
mv "/opt/ErsatzTV-${RELEASE}-linux-x64" /opt/ErsatzTV
|
mv "/opt/ErsatzTV-${RELEASE}-linux-arm64" /opt/ErsatzTV
|
||||||
msg_ok "Updated ErsatzTV"
|
msg_ok "Updated ErsatzTV"
|
||||||
|
|
||||||
msg_info "Starting ErsatzTV"
|
msg_info "Starting ErsatzTV"
|
||||||
|
|||||||
@@ -25,14 +25,15 @@ $STD apt-get install -y --no-install-recommends \
|
|||||||
sudo \
|
sudo \
|
||||||
git \
|
git \
|
||||||
make \
|
make \
|
||||||
mc
|
mc \
|
||||||
|
wget
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
|
|
||||||
msg_info "Installing ErsatzTV "
|
msg_info "Installing ErsatzTV "
|
||||||
RELEASE=$(curl -s https://api.github.com/repos/ErsatzTV/ErsatzTV/releases | grep -oP '"tag_name": "\K[^"]+' | head -n 1)
|
RELEASE=$(curl -s https://api.github.com/repos/ErsatzTV/ErsatzTV/releases | grep -oP '"tag_name": "\K[^"]+' | head -n 1)
|
||||||
wget -qO- "https://github.com/ErsatzTV/ErsatzTV/releases/download/${RELEASE}/ErsatzTV-${RELEASE}-linux-x64.tar.gz" | tar -xz -C /opt
|
wget -qO- "https://github.com/ErsatzTV/ErsatzTV/releases/download/${RELEASE}/ErsatzTV-${RELEASE}-linux-arm64.tar.gz" | tar -xz -C /opt
|
||||||
mv "/opt/ErsatzTV-${RELEASE}-linux-x64" /opt/ErsatzTV
|
mv "/opt/ErsatzTV-${RELEASE}-linux-arm64" /opt/ErsatzTV
|
||||||
msg_ok "Installed ErsatzTV"
|
msg_ok "Installed ErsatzTV"
|
||||||
|
|
||||||
msg_info "Creating Service"
|
msg_info "Creating Service"
|
||||||
|
|||||||
Reference in New Issue
Block a user