From d3ecb9bb0cb45843f0a9737fa9b8a55352bb7574 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Fri, 17 Jan 2025 19:10:19 +1000 Subject: [PATCH] port dotnetapi,opengist,phpipam,wordpress to arm64 --- ct/dotnetaspwebapi.sh | 2 +- ct/opengist.sh | 8 ++++---- ct/phpipam.sh | 2 +- ct/wordpress.sh | 2 +- frontend/src/components/ui/codeblock.tsx | 2 +- install/dotnetaspwebapi-install.sh | 4 +++- install/opengist-install.sh | 10 ++++++---- install/phpipam-install.sh | 4 +++- install/wordpress-install.sh | 4 +++- 9 files changed, 23 insertions(+), 15 deletions(-) diff --git a/ct/dotnetaspwebapi.sh b/ct/dotnetaspwebapi.sh index faf86d296..1df6e1b27 100644 --- a/ct/dotnetaspwebapi.sh +++ b/ct/dotnetaspwebapi.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Kristian Skov # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE diff --git a/ct/opengist.sh b/ct/opengist.sh index 65b586b43..fb924fbdf 100644 --- a/ct/opengist.sh +++ b/ct/opengist.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Jonathan (jd-apprentice) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE @@ -41,12 +41,12 @@ function update_script() { if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then msg_info "Updating ${APP} to v${RELEASE}" cd /opt - wget -qO "https://github.com/thomiceli/opengist/releases/download/v${RELEASE}/opengist${RELEASE}-linux-amd64.tar.gz" + wget -qO "https://github.com/thomiceli/opengist/releases/download/v${RELEASE}/opengist${RELEASE}-linux-arm64.tar.gz" rm -rf /opt/opengist - tar -xzf opengist${RELEASE}-linux-amd64.tar.gz + tar -xzf opengist${RELEASE}-linux-arm64.tar.gz chmod +x /opt/opengist/opengist echo "${RELEASE}" >"/opt/${APP}_version.txt" - rm -rf /opt/opengist${RELEASE}-linux-amd64.tar.gz + rm -rf /opt/opengist${RELEASE}-linux-arm64.tar.gz apt-get -y autoremove &>/dev/null apt-get -y autoclean &>/dev/null msg_ok "Updated ${APP} LXC" diff --git a/ct/phpipam.sh b/ct/phpipam.sh index cf9905fde..40786a956 100644 --- a/ct/phpipam.sh +++ b/ct/phpipam.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE diff --git a/ct/wordpress.sh b/ct/wordpress.sh index 8ff69de17..e9ce11f53 100644 --- a/ct/wordpress.sh +++ b/ct/wordpress.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func) # Copyright (c) 2021-2025 communtiy-scripts ORG # Author: MickLesk (Canbiz) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE diff --git a/frontend/src/components/ui/codeblock.tsx b/frontend/src/components/ui/codeblock.tsx index cb8517c6c..eb8dafc2c 100644 --- a/frontend/src/components/ui/codeblock.tsx +++ b/frontend/src/components/ui/codeblock.tsx @@ -68,7 +68,7 @@ const handleCopy = (type: string, value: string) => {