Switch to VM

This commit is contained in:
Don Locke
2025-04-05 17:34:26 -06:00
parent bb598f8621
commit 19c6317fe1
5 changed files with 539 additions and 116 deletions

20
vm/update/allstarlink.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/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