Ported Gotify to ARM64

This commit is contained in:
Sam Heinz
2024-04-09 23:01:34 +10:00
parent c094564be3
commit 5d3b43e4d0
3 changed files with 8 additions and 6 deletions
+1
View File
@@ -67,6 +67,7 @@ Any applications not in ported or unsupported need to be tested for whether they
<li>⭕ Frigate</li> <li>⭕ Frigate</li>
<li>⭕ Go2RTC</li> <li>⭕ Go2RTC</li>
<li>⭕ Gokapi</li> <li>⭕ Gokapi</li>
<li>⭕ Gotify</li>
<li>⭕ Jellyseerr</li> <li>⭕ Jellyseerr</li>
<li>⭕ Mafl</li> <li>⭕ Mafl</li>
<li>⭕ Nginx Proxy Manager</li> <li>⭕ Nginx Proxy Manager</li>
+1 -1
View File
@@ -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 (tteckster) # Author: tteck (tteckster)
# License: MIT # License: MIT
+6 -5
View File
@@ -17,16 +17,17 @@ msg_info "Installing Dependencies"
$STD apt-get install -y curl $STD apt-get install -y curl
$STD apt-get install -y sudo $STD apt-get install -y sudo
$STD apt-get install -y mc $STD apt-get install -y mc
$STD apt-get install -y wget
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Gotify" msg_info "Installing Gotify"
RELEASE=$(curl -s https://api.github.com/repos/gotify/server/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') RELEASE=$(curl -s https://api.github.com/repos/gotify/server/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
mkdir -p /opt/gotify mkdir -p /opt/gotify
cd /opt/gotify cd /opt/gotify
wget -q https://github.com/gotify/server/releases/download/v${RELEASE}/gotify-linux-amd64.zip wget -q https://github.com/gotify/server/releases/download/v${RELEASE}/gotify-linux-arm64.zip
$STD unzip gotify-linux-amd64.zip $STD unzip gotify-linux-arm64.zip
rm -rf gotify-linux-amd64.zip rm -rf gotify-linux-arm64.zip
chmod +x gotify-linux-amd64 chmod +x gotify-linux-arm64
cat <<EOF >/etc/systemd/system/gotify.service cat <<EOF >/etc/systemd/system/gotify.service
[Unit] [Unit]
@@ -38,7 +39,7 @@ After=network.target
Type=simple Type=simple
User=root User=root
WorkingDirectory=/opt/gotify WorkingDirectory=/opt/gotify
ExecStart=/opt/gotify/./gotify-linux-amd64 ExecStart=/opt/gotify/./gotify-linux-arm64
Restart=always Restart=always
RestartSec=3 RestartSec=3