ProxmoxVE/install/Pf2eTools-install.sh

59 lines
1.3 KiB
Bash
Raw Normal View History

2025-01-01 18:05:09 +00:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 community-scripts ORG
# Author: TheRealVira
# License: MIT
# Source: https://pf2etools.com/
# Import Functions und Setup
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD apt-get install -y \
curl \
mc \
sudo \
2025-01-01 18:43:22 +00:00
apache2 \
git
2025-01-01 18:05:09 +00:00
msg_ok "Installed Dependencies"
# Setup App
msg_info "Setup Pf2eTools"
2025-01-01 18:42:51 +00:00
RELEASE=$(curl -s https://api.github.com/repos/Pf2eToolsOrg/Pf2eTools/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
wget -q "https://github.com/Pf2eToolsOrg/Pf2eTools/archive/refs/tags/${RELEASE}.zip"
2025-01-01 22:01:04 +00:00
unzip -q "${RELEASE}.zip"
2025-01-01 21:09:10 +00:00
mv "Pf2eTools-${RELEASE:1}" /opt/Pf2eTools
2025-01-01 18:42:51 +00:00
echo "${RELEASE}" >/opt/Pf2eTools_version.txt
2025-01-01 18:05:09 +00:00
msg_ok "Set up Pf2eTools"
msg_info "Creating Service"
cat <<EOF >> /etc/apache2/apache2.conf
<Location /server-status>
SetHandler server-status
Order deny,allow
Allow from all
</Location>
EOF
2025-01-01 20:44:13 +00:00
rm -rf /var/www/html
2025-01-01 18:05:09 +00:00
ln -s "/opt/Pf2eTools" /var/www/html
chown -R www-data: "/opt/Pf2eTools"
chmod -R 755 "/opt/Pf2eTools"
apache2ctl start
msg_ok "Creating Service"
# Cleanup
msg_info "Cleaning up"
2025-01-01 18:42:51 +00:00
rm "${RELEASE}.zip"
2025-01-01 18:05:09 +00:00
$STD apt-get -y autoremove
$STD apt-get -y autoclean
msg_ok "Cleaned"
motd_ssh
2025-01-01 20:20:52 +00:00
customize