ProxmoxVE/install/5etools-install.sh

67 lines
1.4 KiB
Bash
Raw Normal View History

2024-12-31 17:44:46 +00:00
#!/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 \
2025-01-01 12:48:05 +00:00
apache2 \
unzip
2024-12-31 17:44:46 +00:00
msg_ok "Installed Dependencies"
# Setup App
msg_info "Setup 5etools"
echo "<Location /server-status>\n"\
" SetHandler server-status\n"\
" Order deny,allow\n"\
" Allow from all\n"\
"</Location>\n"\
2025-01-01 12:48:05 +00:00
>> /etc/apache2/apache2.conf
2024-12-31 17:44:46 +00:00
2025-01-01 12:48:05 +00:00
rm -rf /var/www/html
RELEASE=$(curl -s https://api.github.com/repos/5etools-mirror-3/5etools-src/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
2024-12-31 17:44:46 +00:00
wget -q "https://github.com/5etools-mirror-3/5etools-src/archive/refs/tags/${RELEASE}.zip"
unzip -q "${RELEASE}.zip"
2025-01-01 13:09:49 +00:00
mv "5etools-src-${RELEASE}/" "/opt/5etools"
ln -s "/opt/5etools" /var/www/html
2024-12-31 17:44:46 +00:00
2025-01-01 13:09:49 +00:00
chown -R www-data: "/opt/5etools"
chmod -R 755 "/opt/5etools"
2024-12-31 17:44:46 +00:00
# Cleaning up
msg_info "Cleaning Up"
rm -rf "v${RELEASE}.zip"
msg_ok "Setup 5etools"
# Starting httpd
2025-01-01 12:48:05 +00:00
msg_info "Starting apache"
apache2ctl start
msg_ok "Started apache"
2024-12-31 17:44:46 +00:00
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"