mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-02-03 20:03:25 +01:00
- Use Camoufox (Firefox in Playwright) as intended - Remove Chromium and deps - Adapt dependencies to Debian
102 lines
2.6 KiB
Bash
102 lines
2.6 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: luismco
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/ThePhaseless/Byparr
|
|
|
|
APP="Byparr"
|
|
var_tags="${var_tags:-proxy}"
|
|
var_cpu="${var_cpu:-2}"
|
|
var_ram="${var_ram:-2048}"
|
|
var_disk="${var_disk:-4}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_unprivileged="${var_unprivileged:-1}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
if [[ ! -d /opt/Byparr ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
if check_for_gh_release "Byparr" "ThePhaseless/Byparr"; then
|
|
msg_info "Stopping Service"
|
|
systemctl stop byparr
|
|
msg_ok "Stopped Service"
|
|
|
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "Byparr" "ThePhaseless/Byparr" "tarball" "latest"
|
|
|
|
if ! dpkg -l | grep -q ffmpeg; then
|
|
msg_info "Installing dependencies"
|
|
$STD apt install -y --no-install-recommends \
|
|
ffmpeg \
|
|
libatk1.0-0 \
|
|
libcairo-gobject2 \
|
|
libcairo2 \
|
|
libdbus-glib-1-2 \
|
|
libfontconfig1 \
|
|
libfreetype6 \
|
|
libgdk-pixbuf-xlib-2.0-0 \
|
|
libglib2.0-0 \
|
|
libgtk-3-0 \
|
|
libpango-1.0-0 \
|
|
libpangocairo-1.0-0 \
|
|
libpangoft2-1.0-0 \
|
|
libx11-6 \
|
|
libx11-xcb1 \
|
|
libxcb-shm0 \
|
|
libxcb1 \
|
|
libxcomposite1 \
|
|
libxcursor1 \
|
|
libxdamage1 \
|
|
libxext6 \
|
|
libxfixes3 \
|
|
libxi6 \
|
|
libxrender1 \
|
|
libxt6 \
|
|
libxtst6 \
|
|
xvfb \
|
|
fonts-noto-color-emoji \
|
|
fonts-unifont \
|
|
xfonts-cyrillic \
|
|
xfonts-scalable \
|
|
fonts-liberation \
|
|
fonts-ipafont-gothic \
|
|
fonts-wqy-zenhei \
|
|
fonts-tlwg-loma-otf
|
|
$STD apt autoremove -y chromium
|
|
msg_ok "Installed dependencies"
|
|
fi
|
|
|
|
msg_info "Configuring Byparr"
|
|
cd /opt/Byparr
|
|
$STD uv sync --link-mode copy
|
|
$STD uv run camoufox fetch
|
|
msg_ok "Configured Byparr"
|
|
|
|
msg_info "Starting Service"
|
|
systemctl start byparr
|
|
msg_ok "Started Service"
|
|
msg_ok "Updated successfully!"
|
|
fi
|
|
exit
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed successfully!\n"
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8191${CL}"
|