Files
ProxmoxVE/install/mafl-install.sh

63 lines
1.3 KiB
Bash
Raw Normal View History

2024-02-26 16:41:27 +05:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2024-02-26 16:41:27 +05:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://mafl.hywax.space/
2024-02-26 16:41:27 +05:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2024-02-26 16:41:27 +05:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD apt install -y \
ca-certificates \
build-essential
2024-02-26 16:41:27 +05:00
msg_ok "Installed Dependencies"
NODE_VERSION="22" NODE_MODULE="yarn@latest" setup_nodejs
fetch_and_deploy_gh_release "mafl" "hywax/mafl"
2024-02-26 16:41:27 +05:00
2025-07-30 15:09:57 +02:00
msg_info "Installing Mafl"
2024-02-26 16:41:27 +05:00
mkdir -p /opt/mafl/data
curl -fsSL "https://raw.githubusercontent.com/hywax/mafl/main/.example/config.yml" -o "/opt/mafl/data/config.yml"
2024-02-26 16:41:27 +05:00
cd /opt/mafl
export NUXT_TELEMETRY_DISABLED=true
$STD yarn install
$STD yarn build
2025-07-30 15:09:57 +02:00
msg_ok "Installed Mafl"
2024-02-26 16:41:27 +05:00
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/mafl.service
[Unit]
Description=Mafl
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=root
WorkingDirectory=/opt/mafl/
ExecStart=yarn preview
[Install]
WantedBy=multi-user.target
EOF
systemctl enable -q --now mafl
msg_ok "Created Service"
motd_ssh
customize
msg_info "Cleaning up"
$STD apt -y autoremove
$STD apt -y autoclean
$STD apt -y clean
2024-02-26 16:41:27 +05:00
msg_ok "Cleaned"