Remove Update script

This commit is contained in:
Don Locke 2025-04-05 18:32:16 -06:00
parent 4d3ff9a025
commit 17a602dc54
3 changed files with 1 additions and 28 deletions

View File

@ -6,7 +6,7 @@
],
"date_created": "2025-3-30",
"type": "vm",
"updateable": true,
"updateable": false,
"privileged": false,
"interface_port": null,
"documentation": "https://allstarlink.github.io/",

View File

@ -442,13 +442,6 @@ if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "SETTINGS" --yesno
msg_ok "Installed Allmon3"
fi
msg_info "Installing Update Script"
virt-customize -q -a "${FILE}" \
--touch /usr/bin/update \
--write /usr/bin/update:"bash -c \"\$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/vm/update/allstarlink.sh)\"" \
--chmod 755:/usr/bin/update >/dev/null
msg_ok "Installed Update Script"
msg_info "Creating a AllStarLink VM"
qm create $VMID -agent 1${MACHINE} -tablet 0 -localtime 1 -bios ovmf${CPU_TYPE} -cores $CORE_COUNT -memory $RAM_SIZE \
-name $HN -tags community-script,debian12,allstarlink -net0 virtio,bridge=$BRG,macaddr=$MAC$VLAN$MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci

View File

@ -1,20 +0,0 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2025 community-scripts ORG
# Author: Don Locke (DonLocke)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://github.com/AllStarLink
APP="AllStarLink"
header_info
if [[ ! -d /etc/asterisk ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
msg_info "Updating $APP VM"
$STD apt-get update
$STD DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
msg_ok "Updated $APP VM"
exit