From 7c3c1a3c860d6db11136e035a47af54743330317 Mon Sep 17 00:00:00 2001 From: tremor021 Date: Fri, 6 Feb 2026 10:21:30 +0100 Subject: [PATCH] add Bichon script --- ct/bichon.sh | 55 +++++++++++++++++++++++++++++++++++++++ install/bichon-install.sh | 50 +++++++++++++++++++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 ct/bichon.sh create mode 100644 install/bichon-install.sh diff --git a/ct/bichon.sh b/ct/bichon.sh new file mode 100644 index 000000000..f4091c9d9 --- /dev/null +++ b/ct/bichon.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) +# Copyright (c) 2021-2026 community-scripts ORG +# Author: Slaviša Arežina (tremor021) +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE +# Source: https://github.com/rustmailer/bichon + +APP="PowerDNS" +var_tags="${var_tags:-email;archive}" +var_cpu="${var_cpu:-1}" +var_ram="${var_ram:-1024}" +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/bichon ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + if check_for_gh_release "bichon" "rustmailer/bichon"; then + msg_info "Stopping service" + systemctl stop bichon + msg_ok "Stopped service" + + cp /opt/bichon/bichon.env /tmp/bichon.env.backup + CLEAN_INSTALL=1 fetch_and_deploy_gh_release "bichon" "rustmailer/bichon" "prebuild" "latest" "/opt/bichon" "bichon-*-x86_64-unknown-linux-gnu.tar.gz" + cp /tmp/bichon.env.backup /opt/bichon/bichon.env + + msg_info "Starting service" + systemctl start bichon + msg_ok "Service started" + 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}:15630${CL}" diff --git a/install/bichon-install.sh b/install/bichon-install.sh new file mode 100644 index 000000000..323897384 --- /dev/null +++ b/install/bichon-install.sh @@ -0,0 +1,50 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: Slaviša Arežina (tremor021) +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE +# Source: https://github.com/rustmailer/bichon + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os +setup_hwaccel + +fetch_and_deploy_gh_release "bichon" "rustmailer/bichon" "prebuild" "latest" "/opt/bichon" "bichon-*-x86_64-unknown-linux-gnu.tar.gz" +mkdir -p /opt/bichon-data + +msg_info "Setting up Bichon" +cat </opt/bichon/bichon.env +BICHON_ROOT_DIR=/opt/bichon-data +BICHON_LOG_LEVEL=info +EOF +msg_ok "Setup Bichon" + +msg_info "Creating Service" +cat </etc/systemd/system/bichon.service +[Unit] +Description=Bichon service +After=network.target + +[Service] +Type=simple +User=root +EnvironmentFile=/opt/bichon/bichon.env +WorkingDirectory=/opt/bichon +ExecStart=/opt/bichon/bichon +Restart=on-failure +RestartSec=5 + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q --now bichon +msg_info "Created Service" + +motd_ssh +customize +cleanup_lxc