ProxmoxVE/install/5etools-install.sh

68 lines
1.8 KiB
Bash
Raw Normal View History

2024-12-31 17:44:46 +00:00
#!/usr/bin/env bash
2025-01-01 16:21:50 +00:00
# Copyright (c) 2021-2025 community-scripts ORG
2024-12-31 17:44:46 +00:00
# Author: TheRealVira
# License: MIT
# Source: https://5e.tools/
# Import Functions und Setup
2025-01-01 14:50:02 +00:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2024-12-31 17:44:46 +00:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD apt-get install -y \
curl \
mc \
2024-12-31 17:44:46 +00:00
sudo \
git \
2025-01-01 20:21:15 +00:00
apache2
2024-12-31 17:44:46 +00:00
msg_ok "Installed Dependencies"
# Setup App
2025-01-01 18:55:57 +00:00
msg_info "Set up base 5etools"
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) }')
wget -q "https://github.com/5etools-mirror-3/5etools-src/archive/refs/tags/${RELEASE}.zip"
2025-01-01 22:00:33 +00:00
unzip -q "${RELEASE}.zip"
2025-01-01 21:32:51 +00:00
mv "5etools-src-${RELEASE:1}" /opt/5etools
echo "${RELEASE}" >"/opt/5etools_version.txt"
2025-01-01 18:55:57 +00:00
rm "${RELEASE}.zip"
msg_ok "Set up base 5etools"
msg_info "Set up 5etools images"
IMG_RELEASE=$(curl -s https://api.github.com/repos/5etools-mirror-2/5etools-img/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
2025-01-01 22:15:32 +00:00
curl -sSL "https://github.com/5etools-mirror-2/5etools-img/archive/refs/tags/${IMG_RELEASE}.zip" > "${IMG_RELEASE}.zip"
2025-01-01 22:00:33 +00:00
unzip -q "${IMG_RELEASE}.zip"
2025-01-01 21:32:51 +00:00
mv "5etools-img-${IMG_RELEASE:1}" /opt/5etools/img
echo "${IMG_RELEASE}" >"/opt/5etools_IMG_version.txt"
2025-01-01 18:55:57 +00:00
rm "${IMG_RELEASE}.zip"
msg_ok "Set up 5etools images"
2025-01-01 16:12:24 +00:00
msg_info "Creating Service"
2025-01-01 16:34:05 +00:00
cat <<EOF >> /etc/apache2/apache2.conf
2025-01-01 16:12:24 +00:00
<Location /server-status>
SetHandler server-status
Order deny,allow
Allow from all
</Location>
EOF
2025-01-01 20:44:31 +00:00
rm -rf /var/www/html
2025-01-01 13:09:49 +00:00
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"
2025-01-01 16:12:24 +00:00
apache2ctl start
msg_ok "Creating Service"
2025-01-01 13:21:03 +00:00
# Cleanup
msg_info "Cleaning up"
$STD apt-get -y autoremove
$STD apt-get -y autoclean
msg_ok "Cleaned"
2024-12-31 17:44:46 +00:00
motd_ssh
customize