ProxmoxVE/install/5etools-install.sh

65 lines
1.3 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
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
# Installing Dependencies with the 3 core dependencies (curl;sudo;mc)
msg_info "Installing Dependencies"
$STD apt-get install -y \
curl \
mc \
2024-12-31 17:44:46 +00:00
sudo \
git \
jq \
2025-01-01 15:14:19 +00:00
apache2
2024-12-31 17:44:46 +00:00
msg_ok "Installed Dependencies"
# Setup App
msg_info "Setup 5etools"
cat <<EOF > /etc/apache2/apache2.conf
2025-01-01 15:36:01 +00:00
<Location /server-status>
SetHandler server-status
Order deny,allow
Allow from all
</Location>
EOF
2024-12-31 17:44:46 +00:00
2025-01-01 12:48:05 +00:00
rm -rf /var/www/html
2025-01-01 15:21:30 +00:00
git config --global http.postBuffer 1048576000
git config --global https.postBuffer 1048576000
2025-01-01 15:14:19 +00:00
git clone https://github.com/5etools-mirror-3/5etools-src /opt/5etools
2025-01-01 14:41:36 +00:00
msg_ok "Set up 5etools"
msg_info "Creating Service"
2025-01-01 15:14:19 +00:00
cd /opt/5etools
git submodule add -f https://github.com/5etools-mirror-2/5etools-img "img"
git pull --recurse-submodules --jobs=10
cd ~
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"
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
# Starting httpd
2025-01-01 12:48:05 +00:00
apache2ctl start
2024-12-31 17:44:46 +00:00
motd_ssh
customize