From 962461e91c6952849c660d985a826cfbd3f6d80b Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 25 Mar 2025 13:19:15 +0100 Subject: [PATCH] cleanup --- ct/qbittorrent.sh | 70 --------------------------- frontend/public/json/qbittorrent.json | 34 ------------- install/cosmos-install.sh | 1 - install/qbittorrent-install.sh | 67 ------------------------- 4 files changed, 172 deletions(-) delete mode 100644 ct/qbittorrent.sh delete mode 100644 frontend/public/json/qbittorrent.json delete mode 100644 install/cosmos-install.sh delete mode 100644 install/qbittorrent-install.sh diff --git a/ct/qbittorrent.sh b/ct/qbittorrent.sh deleted file mode 100644 index a9f3f3f..0000000 --- a/ct/qbittorrent.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) -# Copyright (c) 2021-2025 community-scripts ORG -# Author: tteck (tteckster) | Co-Author: Slaviša Arežina (tremor021) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://www.qbittorrent.org/ - -APP="qBittorrent" -var_tags="torrent" -var_cpu="2" -var_ram="2048" -var_disk="8" -var_os="debian" -var_version="12" -var_unprivileged="1" - -header_info "$APP" -variables -color -catch_errors - -function update_script() { - header_info - check_container_storage - check_container_resources - if [[ ! -f /etc/systemd/system/qbittorrent-nox.service ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - if [[ ! -f /opt/${APP}_version.txt ]]; then - touch /opt/${APP}_version.txt - mkdir -p $HOME/.config/qBittorrent/ - mkdir -p /opt/qbittorrent/ - mv /.config/qBittorrent $HOME/.config/ - $STD apt-get remove --purge -y qbittorrent-nox - sed -i 's@ExecStart=/usr/bin/qbittorrent-nox@ExecStart=/opt/qbittorrent/qbittorrent-nox@g' /etc/systemd/system/qbittorrent-nox.service - systemctl daemon-reload - fi - FULLRELEASE=$(curl -s https://api.github.com/repos/userdocs/qbittorrent-nox-static/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') - RELEASE=$(echo $FULLRELEASE | cut -c 9-13) - if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then - msg_info "Stopping Service" - systemctl stop qbittorrent-nox - msg_ok "Stopped Service" - - msg_info "Updating ${APP} to v${RELEASE}" - rm -f /opt/qbittorrent/qbittorrent-nox - curl -fsSL "https://github.com/userdocs/qbittorrent-nox-static/releases/download/${FULLRELEASE}/x86_64-qbittorrent-nox" -o /opt/qbittorrent/qbittorrent-nox - chmod +x /opt/qbittorrent/qbittorrent-nox - echo "${RELEASE}" >/opt/${APP}_version.txt - msg_ok "Updated $APP to v${RELEASE}" - - msg_info "Starting Service" - systemctl start qbittorrent-nox - msg_ok "Started Service" - msg_ok "Updated Successfully" - else - msg_ok "No update required. ${APP} is already at v${RELEASE}" - fi - exit -} - -start -build_container -description - -msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" -echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" diff --git a/frontend/public/json/qbittorrent.json b/frontend/public/json/qbittorrent.json deleted file mode 100644 index 77c0367..0000000 --- a/frontend/public/json/qbittorrent.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "qBittorrent", - "slug": "qbittorrent", - "categories": [ - 11 - ], - "date_created": "2024-05-02", - "type": "ct", - "updateable": false, - "privileged": false, - "interface_port": 8090, - "documentation": null, - "website": "https://www.qbittorrent.org/", - "logo": "https://raw.githubusercontent.com/selfhst/icons/refs/heads/main/svg/qbittorrent.svg", - "description": "qBittorrent offers a user-friendly interface that allows users to search for and download torrent files easily. It also supports magnet links, which allow users to start downloading files without the need for a torrent file.", - "install_methods": [ - { - "type": "default", - "script": "ct/qbittorrent.sh", - "resources": { - "cpu": 2, - "ram": 2048, - "hdd": 8, - "os": "debian", - "version": "12" - } - } - ], - "default_credentials": { - "username": "admin", - "password": "changeme" - }, - "notes": [] -} \ No newline at end of file diff --git a/install/cosmos-install.sh b/install/cosmos-install.sh deleted file mode 100644 index 8b13789..0000000 --- a/install/cosmos-install.sh +++ /dev/null @@ -1 +0,0 @@ - diff --git a/install/qbittorrent-install.sh b/install/qbittorrent-install.sh deleted file mode 100644 index aae43e4..0000000 --- a/install/qbittorrent-install.sh +++ /dev/null @@ -1,67 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2025 community-scripts ORG -# Author: tteck (tteckster) | Co-Author: Slaviša Arežina (tremor021) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://www.qbittorrent.org/ - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -msg_info "Installing Dependencies" -$STD apt-get install -y \ - curl \ - sudo \ - mc -msg_ok "Installed Dependencies" - -msg_info "Setup qBittorrent-nox" -FULLRELEASE=$(curl -s https://api.github.com/repos/userdocs/qbittorrent-nox-static/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') -RELEASE=$(echo $FULLRELEASE | cut -c 9-13) -mkdir -p /opt/qbittorrent -curl -fsSL "https://github.com/userdocs/qbittorrent-nox-static/releases/download/${FULLRELEASE}/x86_64-qbittorrent-nox" -o /opt/qbittorrent/qbittorrent-nox -chmod +x /opt/qbittorrent/qbittorrent-nox -mkdir -p $HOME/.config/qBittorrent/ -cat <$HOME/.config/qBittorrent/qBittorrent.conf -[LegalNotice] -Accepted=true - -[Preferences] -WebUI\Password_PBKDF2="@ByteArray(amjeuVrF3xRbgzqWQmes5A==:XK3/Ra9jUmqUc4RwzCtrhrkQIcYczBl90DJw2rT8DFVTss4nxpoRhvyxhCf87ahVE3SzD8K9lyPdpyUCfmVsUg==)" -WebUI\Port=8090 -WebUI\UseUPnP=false -WebUI\Username=admin -EOF -echo "${RELEASE}" >/opt/${APPLICATION}_version.txt -msg_ok "Setup qBittorrent-nox" - -msg_info "Creating Service" -cat </etc/systemd/system/qbittorrent-nox.service -[Unit] -Description=qBittorrent client -After=network.target - -[Service] -Type=simple -User=root -ExecStart=/opt/qbittorrent/qbittorrent-nox -Restart=always - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now qbittorrent-nox -msg_ok "Created Service" - -motd_ssh -customize - -msg_info "Cleaning up" -$STD apt-get -y autoremove -$STD apt-get -y autoclean -msg_ok "Cleaned"