2025-11-02 23:49:54 -08:00
|
|
|
#!/usr/bin/env bash
|
2025-04-01 10:25:46 +02:00
|
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
2024-12-03 17:28:27 +02:00
|
|
|
# Author: kristocopani
|
2024-12-16 12:42:51 +01:00
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
# Source: https://onedev.io/
|
2024-12-03 17:28:27 +02:00
|
|
|
|
|
|
|
|
APP="OneDev"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_tags="${var_tags:-git}"
|
|
|
|
|
var_cpu="${var_cpu:-2}"
|
|
|
|
|
var_ram="${var_ram:-2048}"
|
|
|
|
|
var_disk="${var_disk:-4}"
|
|
|
|
|
var_os="${var_os:-debian}"
|
2025-10-15 22:39:16 +02:00
|
|
|
var_version="${var_version:-13}"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_unprivileged="${var_unprivileged:-1}"
|
2024-12-16 12:42:51 +01:00
|
|
|
|
|
|
|
|
header_info "$APP"
|
2024-12-03 17:28:27 +02:00
|
|
|
variables
|
|
|
|
|
color
|
|
|
|
|
catch_errors
|
|
|
|
|
function update_script() {
|
2024-12-16 12:42:51 +01:00
|
|
|
header_info
|
|
|
|
|
check_container_storage
|
|
|
|
|
check_container_resources
|
2024-12-03 17:28:27 +02:00
|
|
|
|
|
|
|
|
if [[ ! -f /etc/systemd/system/onedev.service ]]; then
|
|
|
|
|
msg_error "No ${APP} Installation Found!"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
2025-12-05 22:16:42 +01:00
|
|
|
|
|
|
|
|
if check_for_gh_release "onedev" "theonedev/onedev"; then
|
|
|
|
|
JAVA_VERSION="21" setup_java
|
|
|
|
|
|
2024-12-03 17:28:27 +02:00
|
|
|
msg_info "Stopping Service"
|
|
|
|
|
systemctl stop onedev
|
|
|
|
|
msg_ok "Stopped Service"
|
|
|
|
|
|
2025-12-05 22:16:42 +01:00
|
|
|
msg_info "Updating OneDev"
|
2024-12-03 17:28:27 +02:00
|
|
|
cd /opt
|
2025-12-05 22:16:42 +01:00
|
|
|
curl -fsSL "https://code.onedev.io/onedev/server/~site/onedev-latest.tar.gz" -o onedev-latest.tar.gz
|
2024-12-03 17:28:27 +02:00
|
|
|
tar -xzf onedev-latest.tar.gz
|
2025-02-24 12:49:16 +01:00
|
|
|
$STD /opt/onedev-latest/bin/upgrade.sh /opt/onedev
|
2025-11-22 16:41:22 +01:00
|
|
|
rm -rf /opt/onedev-latest
|
|
|
|
|
rm -rf /opt/onedev-latest.tar.gz
|
2025-12-05 22:16:42 +01:00
|
|
|
echo "${CHECK_UPDATE_RELEASE}" >~/.onedev
|
|
|
|
|
msg_ok "Updated OneDev"
|
2024-12-03 17:28:27 +02:00
|
|
|
|
|
|
|
|
msg_info "Starting Service"
|
|
|
|
|
systemctl start onedev
|
|
|
|
|
msg_ok "Started Service"
|
2025-10-30 09:24:16 -07:00
|
|
|
msg_ok "Updated successfully!"
|
2025-12-05 22:16:42 +01:00
|
|
|
exit
|
2024-12-03 17:28:27 +02:00
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start
|
|
|
|
|
build_container
|
|
|
|
|
description
|
|
|
|
|
|
2026-01-06 22:57:40 +01:00
|
|
|
msg_ok "Completed successfully!\n"
|
2024-12-16 12:42:51 +01:00
|
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
|
|
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
2025-04-01 10:51:52 +02:00
|
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6610${CL}"
|