- Update Debian version from 12 to 13 - Replace manual download/extraction with fetch_and_deploy_gh_release function - Remove redundant curl/wget installation (already in core dependencies) - Remove unnecessary comments - Add apt clean -y to cleanup section - Modernize apt-get commands to apt - Update success message to 'Updated successfully!' - Fix asset pattern to match release files (upgopher_*_linux_amd64.tar.gz)
57 lines
1.3 KiB
Bash
57 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2025 community-scripts ORG
|
|
# Author: Eduardo González (wanetty)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/wanetty/upgopher
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Upgopher"
|
|
mkdir -p /opt/upgopher
|
|
fetch_and_deploy_gh_release "upgopher" "wanetty/upgopher" "prebuild" "latest" "/opt/upgopher" "upgopher_*_linux_amd64.tar.gz"
|
|
chmod +x /opt/upgopher/upgopher
|
|
msg_ok "Installed Upgopher"
|
|
|
|
msg_info "Configuring Upgopher"
|
|
UPGOPHER_PORT="9090"
|
|
UPGOPHER_DIR="/opt/upgopher/uploads"
|
|
mkdir -p "$UPGOPHER_DIR"
|
|
msg_ok "Configured Upgopher (default settings: no auth, HTTP, port 9090)"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/upgopher.service
|
|
[Unit]
|
|
Description=Upgopher File Server
|
|
Documentation=https://github.com/wanetty/upgopher
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=root
|
|
WorkingDirectory=/opt/upgopher
|
|
ExecStart=/opt/upgopher/upgopher -port $UPGOPHER_PORT -dir "$UPGOPHER_DIR"
|
|
Restart=always
|
|
RestartSec=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now upgopher
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
|
|
msg_info "Cleaning up"
|
|
$STD apt -y autoremove
|
|
$STD apt -y autoclean
|
|
$STD apt clean -y
|
|
msg_ok "Cleaned"
|