From 0ae1c6492b49a464f693bc7762f8d73c29f9d4d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20R=C3=BChrig?= Date: Wed, 1 Jan 2025 20:49:28 +0100 Subject: [PATCH] Removed 5etools. Different project... --- ct/5etools.sh | 0 install/5etools-install.sh | 63 -------------------------------------- 2 files changed, 63 deletions(-) delete mode 100644 ct/5etools.sh delete mode 100644 install/5etools-install.sh diff --git a/ct/5etools.sh b/ct/5etools.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/install/5etools-install.sh b/install/5etools-install.sh deleted file mode 100644 index 18356f20..00000000 --- a/install/5etools-install.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2024 community-scripts ORG -# Author: TheRealVira -# License: MIT -# Source: https://5e.tools/ - -# Import Functions und Setup -source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -# Installing Dependencies with the 3 core dependencies (curl;sudo;mc) -msg_info "Installing Dependencies" -$STD apt-get install -y \ - curl \ - sudo \ - git \ - jq \ - apache2 - -msg_ok "Installed Dependencies" - -# Setup App -msg_info "Setup 5etools" -echo "\n"\ -" SetHandler server-status\n"\ -" Order deny,allow\n"\ -" Allow from all\n"\ -"\n"\ ->> /usr/local/apache2/conf/httpd.conf - -rm /usr/local/apache2/htdocs/index.html -wget -q "https://github.com/5etools-mirror-3/5etools-src/archive/refs/tags/${RELEASE}.zip" -unzip -q "${RELEASE}.zip" -mv "${APP}-src-${RELEASE}/" "/opt/${APP}" - -chown -R www-data: "/opt/${APP}" -chmod -R 755 "/opt/${APP}" - -# Cleaning up -msg_info "Cleaning Up" -rm -rf "v${RELEASE}.zip" -msg_ok "Setup 5etools" - -# Starting httpd -msg_info "Starting httpd" -httpd-foreground -msg_ok "Started httpd" - -motd_ssh -customize - -# Cleanup -msg_info "Cleaning up" -rm -f "/opt/v${RELEASE}.zip" -$STD apt-get -y autoremove -$STD apt-get -y autoclean -msg_ok "Cleaned"