diff --git a/ct/headers/suwayomiserver b/ct/headers/suwayomiserver deleted file mode 100644 index df4896f61..000000000 --- a/ct/headers/suwayomiserver +++ /dev/null @@ -1,6 +0,0 @@ - _____ _ _____ - / ___/__ ___ ______ ___ ______ ____ ___ (_) ___/___ ______ _____ _____ - \__ \/ / / / | /| / / __ `/ / / / __ \/ __ `__ \/ /\__ \/ _ \/ ___/ | / / _ \/ ___/ - ___/ / /_/ /| |/ |/ / /_/ / /_/ / /_/ / / / / / / /___/ / __/ / | |/ / __/ / -/____/\__,_/ |__/|__/\__,_/\__, /\____/_/ /_/ /_/_//____/\___/_/ |___/\___/_/ - /____/ diff --git a/ct/suwayomiserver.sh b/ct/suwayomiserver.sh deleted file mode 100644 index 31dc58a5d..000000000 --- a/ct/suwayomiserver.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) -# Copyright (c) 2021-2026 community-scripts ORG -# Author: Slaviša Arežina (tremor021) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/Suwayomi/Suwayomi-Server - -APP="SuwayomiServer" -var_tags="${var_tags:-media;manga}" -var_cpu="${var_cpu:-1}" -var_ram="${var_ram:-1024}" -var_disk="${var_disk:-4}" -var_os="${var_os:-debian}" -var_version="${var_version:-13}" -var_unprivileged="${var_unprivileged:-1}" - -header_info "$APP" -variables -color -catch_errors - -function update_script() { - header_info - check_container_storage - check_container_resources - - if [[ ! -f /usr/bin/suwayomi-server ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - - if check_for_gh_release "suwayomi-server" "Suwayomi/Suwayomi-Server"; then - JAVA_VERSION=21 setup_java - - msg_info "Stopping Service" - systemctl stop suwayomi-server - msg_info "Stopped Service" - - fetch_and_deploy_gh_release "suwayomi-server" "Suwayomi/Suwayomi-Server" "binary" - - msg_info "Starting Service" - systemctl start suwayomi-server - msg_ok "Started Service" - msg_ok "Updated successfully!" - 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}:4567${CL}" diff --git a/frontend/public/json/suwayomi-server.json b/frontend/public/json/suwayomi-server.json deleted file mode 100644 index 740f07c26..000000000 --- a/frontend/public/json/suwayomi-server.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "name": "Suwayomi-Server", - "slug": "suwayomi-server", - "categories": [ - 13 - ], - "date_created": "2025-08-01", - "type": "ct", - "updateable": true, - "privileged": false, - "interface_port": 4567, - "documentation": "https://github.com/Suwayomi/Suwayomi-Server/wiki", - "website": "https://github.com/Suwayomi/Suwayomi-Server", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/suwayomi.webp", - "config_path": "", - "description": "A free and open source manga reader server that runs extensions built for Mihon (Tachiyomi).", - "install_methods": [ - { - "type": "default", - "script": "ct/suwayomiserver.sh", - "resources": { - "cpu": 1, - "ram": 1024, - "hdd": 4, - "os": "debian", - "version": "13" - } - } - ], - "default_credentials": { - "username": null, - "password": null - }, - "notes": [ - { - "text": "This application can be conflicting with Kaspersky products. You maybe need to disable Kaspersky in order to use this application.", - "type": "info" - } - ] -} diff --git a/install/suwayomiserver-install.sh b/install/suwayomiserver-install.sh deleted file mode 100644 index f2f7eb48c..000000000 --- a/install/suwayomiserver-install.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 community-scripts ORG -# Author: Slaviša Arežina (tremor021) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/Suwayomi/Suwayomi-Server - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -msg_info "Installing Dependencies" -$STD apt install -y libc++-dev -msg_ok "Installed Dependencies" - -JAVA_VERSION=21 setup_java -fetch_and_deploy_gh_release "suwayomi-server" "Suwayomi/Suwayomi-Server" "binary" - -msg_info "Creating Service" -cat </etc/systemd/system/suwayomi-server.service -[Unit] -Description=Suwayomi-Server Service -After=network.target - -[Service] -ExecStart=/usr/bin/suwayomi-server -Restart=always - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now suwayomi-server -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc