2023-03-23 01:48:20 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2024-01-01 18:13:05 +01:00
|
|
|
# Copyright (c) 2021-2024 tteck
|
2023-03-23 01:48:20 +01:00
|
|
|
# Author: tteck (tteckster)
|
|
|
|
# License: MIT
|
|
|
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
|
|
|
|
|
|
|
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
|
|
|
|
$STD apt-get install -y sudo
|
|
|
|
$STD apt-get install -y mc
|
2024-02-18 23:52:10 +01:00
|
|
|
$STD apt-get install -y apt-transport-https
|
2023-03-23 01:48:20 +01:00
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
2024-02-18 23:52:10 +01:00
|
|
|
msg_info "Installing PHP8.3"
|
|
|
|
curl -sSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg
|
|
|
|
echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ bookworm main" >/etc/apt/sources.list.d/php.list
|
|
|
|
$STD apt-get update
|
|
|
|
$STD apt-get install -y php8.3 php8.3-cli php8.3-{bz2,curl,mbstring,intl,sqlite3,zip,xml}
|
|
|
|
msg_ok "Installed PHP8.3"
|
2023-03-23 01:48:20 +01:00
|
|
|
|
2024-02-20 00:22:38 +01:00
|
|
|
RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/Heimdall/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[""]')
|
2023-03-23 01:48:20 +01:00
|
|
|
msg_info "Installing Heimdall Dashboard ${RELEASE}"
|
2024-02-18 23:12:01 +01:00
|
|
|
wget -q https://github.com/linuxserver/Heimdall/archive/${RELEASE}.tar.gz
|
|
|
|
tar xzf ${RELEASE}.tar.gz
|
2024-02-20 00:22:38 +01:00
|
|
|
VER=$(curl -s https://api.github.com/repos/linuxserver/Heimdall/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
|
2023-03-23 01:48:20 +01:00
|
|
|
rm -rf ${RELEASE}.tar.gz
|
|
|
|
mv Heimdall-${VER} /opt/Heimdall
|
2024-02-20 00:22:38 +01:00
|
|
|
$STD apt-get install -y composer
|
2023-03-23 01:48:20 +01:00
|
|
|
msg_ok "Installed Heimdall Dashboard ${RELEASE}"
|
|
|
|
|
|
|
|
msg_info "Creating Service"
|
|
|
|
service_path="/etc/systemd/system/heimdall.service"
|
|
|
|
echo "[Unit]
|
|
|
|
Description=Heimdall
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Restart=always
|
|
|
|
RestartSec=5
|
|
|
|
Type=simple
|
|
|
|
User=root
|
|
|
|
WorkingDirectory=/opt/Heimdall
|
|
|
|
ExecStart="/usr/bin/php" artisan serve --port 7990 --host 0.0.0.0
|
|
|
|
TimeoutStopSec=30
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target" >$service_path
|
2024-02-18 23:12:01 +01:00
|
|
|
systemctl enable -q --now heimdall.service
|
2024-02-20 00:22:38 +01:00
|
|
|
cd /opt/Heimdall
|
|
|
|
COMPOSER_ALLOW_SUPERUSER=1 composer dump-autoload &>/dev/null
|
|
|
|
systemctl restart heimdall.service
|
2023-03-23 01:48:20 +01:00
|
|
|
msg_ok "Created Service"
|
|
|
|
|
|
|
|
motd_ssh
|
2023-05-15 13:39:30 +02:00
|
|
|
customize
|
2023-03-23 01:48:20 +01:00
|
|
|
|
|
|
|
msg_info "Cleaning up"
|
|
|
|
$STD apt-get autoremove
|
|
|
|
$STD apt-get autoclean
|
|
|
|
msg_ok "Cleaned"
|