mirror of https://github.com/tteck/Proxmox
parent
d01a18dbaf
commit
b67669abd6
2 changed files with 182 additions and 0 deletions
@ -0,0 +1,76 @@ |
||||
#!/usr/bin/env bash |
||||
source <(curl -s https://raw.githubusercontent.com/remz1337/Proxmox/remz/misc/build.func) |
||||
# Copyright (c) 2021-2024 tteck |
||||
# Author: tteck (tteckster), remz1337 |
||||
# License: MIT |
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE |
||||
|
||||
function header_info { |
||||
clear |
||||
cat <<"EOF" |
||||
______ _ ______ |
||||
/ ____/___ (_)________ _____ _____ ___ ___ _____ / ____/_______ ___ ____ _____ _____ ___ ___ _____ |
||||
/ __/ / __ \/ / ___/ __ `/ __ `/ __ `__ \/ _ \/ ___/_____/ /_ / ___/ _ \/ _ \/ __ `/ __ `/ __ `__ \/ _ \/ ___/ |
||||
/ /___/ /_/ / / /__/ /_/ / /_/ / / / / / / __(__ )_____/ __/ / / / __/ __/ /_/ / /_/ / / / / / / __(__ ) |
||||
/_____/ .___/_/\___/\__, /\__,_/_/ /_/ /_/\___/____/ /_/ /_/ \___/\___/\__, /\__,_/_/ /_/ /_/\___/____/ |
||||
/_/ /____/ /____/ |
||||
|
||||
EOF |
||||
} |
||||
header_info |
||||
echo -e "Loading..." |
||||
APP="Epicgames-Freegames" |
||||
var_disk="4" |
||||
var_cpu="1" |
||||
var_ram="512" |
||||
var_os="debian" |
||||
var_version="12" |
||||
variables |
||||
color |
||||
catch_errors |
||||
|
||||
function default_settings() { |
||||
CT_TYPE="1" |
||||
PW="" |
||||
CT_ID=$NEXTID |
||||
HN=$NSAPP |
||||
DISK_SIZE="$var_disk" |
||||
CORE_COUNT="$var_cpu" |
||||
RAM_SIZE="$var_ram" |
||||
BRG="vmbr0" |
||||
NET="dhcp" |
||||
GATE="" |
||||
APT_CACHER="" |
||||
APT_CACHER_IP="" |
||||
DISABLEIP6="no" |
||||
MTU="" |
||||
SD="" |
||||
NS="" |
||||
MAC="" |
||||
VLAN="" |
||||
SSH="no" |
||||
VERB="no" |
||||
echo_default |
||||
} |
||||
|
||||
function update_script() { |
||||
header_info |
||||
if [[ ! -f /etc/systemd/system/epicgames-freegames.timer ]]; then msg_error "No ${APP} Installation Found!"; exit; fi |
||||
msg_info "Updating ${APP} LXC" |
||||
RELEASE=$(curl -s https://api.github.com/repos/claabs/epicgames-freegames-node/releases/latest | grep "tarball_url" | awk '{print substr($2, 2, length($2)-3)}') |
||||
#mkdir -p /opt/epicgames-freegames |
||||
wget -qO epicgames-freegames.tar.gz "${RELEASE}" |
||||
tar -xzf epicgames-freegames.tar.gz -C /opt/epicgames-freegames --strip-components 1 --overwrite |
||||
rm -rf epicgames-freegames.tar.gz |
||||
npm install --prefix /opt/epicgames-freegames |
||||
msg_ok "Updated Successfully" |
||||
exit |
||||
} |
||||
|
||||
start |
||||
build_container |
||||
description |
||||
|
||||
msg_ok "Completed Successfully!\n" |
||||
echo -e "${APP} is configured to be accessed by local tunnel. Please update the configuration to use a reverse proxy with the following URL. |
||||
${BL}http://${IP}:3000${CL} \n" |
@ -0,0 +1,106 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# Copyright (c) 2021-2024 tteck |
||||
# Author: tteck (tteckster), remz1337 |
||||
# 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 |
||||
|
||||
EMAIL=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "\nEnter your Epic Games account (email)" 9 58 --title "Account" 3>&1 1>&2 2>&3) |
||||
echo -e "${DGN}Using Epic Games Account: ${BGN}$EMAIL${CL}" |
||||
|
||||
msg_info "Installing Dependencies (Patience)" |
||||
$STD apt-get install -y \ |
||||
curl \ |
||||
libnss3 \ |
||||
libatk1.0-0 \ |
||||
libatk-bridge2.0-0 \ |
||||
libcups2 \ |
||||
libxcomposite-dev \ |
||||
libxdamage1 \ |
||||
libxrandr2 \ |
||||
libgbm-dev \ |
||||
libxkbcommon-x11-0 \ |
||||
libpangocairo-1.0-0 \ |
||||
libasound2 \ |
||||
gpg |
||||
msg_ok "Installed Dependencies" |
||||
|
||||
msg_info "Installing Node.js" |
||||
mkdir -p /etc/apt/keyrings |
||||
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg |
||||
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" >/etc/apt/sources.list.d/nodesource.list |
||||
$STD apt-get update |
||||
$STD apt-get install -y nodejs |
||||
msg_ok "Installed Node.js" |
||||
|
||||
msg_info "Installing Epicgames-freegames" |
||||
RELEASE=$(curl -s https://api.github.com/repos/claabs/epicgames-freegames-node/releases/latest | grep "tarball_url" | awk '{print substr($2, 2, length($2)-3)}') |
||||
mkdir -p /opt/epicgames-freegames |
||||
wget -qO epicgames-freegames.tar.gz "${RELEASE}" |
||||
tar -xzf epicgames-freegames.tar.gz -C /opt/epicgames-freegames --strip-components 1 --overwrite |
||||
rm -rf epicgames-freegames.tar.gz |
||||
npm install --prefix /opt/epicgames-freegames |
||||
mkdir -p /opt/epicgames-freegames/config |
||||
|
||||
cat <<EOF >/opt/epicgames-freegames/config/config.json |
||||
{ |
||||
"runOnStartup": true, |
||||
"cronSchedule": "0 0,6,12,18 * * *", |
||||
"logLevel": "info", |
||||
"webPortalConfig": { |
||||
//localtunnel is used when there is no reverse proxy |
||||
"localtunnel": true, |
||||
//Once a reverse proxy has been set up, comment the localtunnel and uncomment the baseUrl (with the correct value) |
||||
//"baseUrl": "https://epicgames-freegames.example.com", |
||||
}, |
||||
"accounts": [ |
||||
{ |
||||
//Enter your Epic Games account email here |
||||
"email": "${EMAIL}", |
||||
}, |
||||
], |
||||
//You can setup notifications. See docs at https://github.com/claabs/epicgames-freegames-node |
||||
} |
||||
EOF |
||||
msg_ok "Installed Epicgames-freegames" |
||||
|
||||
msg_info "Creating Services" |
||||
cat <<EOF >/etc/systemd/system/epicgames-freegames.service |
||||
[Unit] |
||||
Description="Epic Games free games" |
||||
Requires=epicgames-freegames.timer |
||||
[Service] |
||||
Type=simple |
||||
WorkingDirectory=/opt/epicgames-freegames |
||||
ExecStart=npm run start |
||||
EOF |
||||
|
||||
cat <<EOF >/etc/systemd/system/epicgames-freegames.timer |
||||
[Unit] |
||||
Description="Timer for the epicgames-freegames.service" |
||||
[Timer] |
||||
Unit=epicgames-freegames.service |
||||
OnBootSec=1min |
||||
OnUnitActiveSec=6h |
||||
[Install] |
||||
WantedBy=timers.target |
||||
EOF |
||||
|
||||
systemctl enable -q --now epicgames-freegames.timer |
||||
msg_ok "Created Services" |
||||
|
||||
motd_ssh |
||||
customize |
||||
|
||||
msg_info "Cleaning up" |
||||
$STD apt-get autoremove |
||||
$STD apt-get autoclean |
||||
msg_ok "Cleaned" |
Loading…
Reference in new issue