This commit is contained in:
CanbiZ 2025-03-25 09:33:04 +01:00
parent e8c3d030f3
commit 2aa4b1aa16
3 changed files with 8 additions and 3 deletions

View File

@ -20,11 +20,14 @@ color
catch_errors catch_errors
function update_script() { function update_script() {
header_info
msg_info "Updating Alpine Packages" msg_info "Updating Alpine Packages"
$STD apk update $STD apk update && apk upgrade
$STD apk upgrade
msg_ok "Updated Alpine Packages" msg_ok "Updated Alpine Packages"
echo "DEBUG: CT_TYPE before update_script=${CT_TYPE:-UNDEFINED}"
echo "DEBUG: var_unprivileged=${var_unprivileged:-UNDEFINED}"
msg_info "Updating Gitea" msg_info "Updating Gitea"
$STD apk upgrade gitea $STD apk upgrade gitea
msg_ok "Updated Gitea" msg_ok "Updated Gitea"

View File

@ -4,8 +4,8 @@
# Author: tteck (tteckster) # Author: tteck (tteckster)
# License: MIT # License: MIT
# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color color
verb_ip6 verb_ip6
catch_errors catch_errors

View File

@ -192,4 +192,6 @@ customize() {
bash -c "passwd -d root" >/dev/null 2>&1 bash -c "passwd -d root" >/dev/null 2>&1
msg_ok "Customized Container" msg_ok "Customized Container"
fi fi
echo "bash -c \"\$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/ct/${app}.sh)\"" >/usr/bin/update
chmod +x /usr/bin/update
} }