From 8b22dd424f1da653f518b631f9d6a0422fa47b69 Mon Sep 17 00:00:00 2001 From: aaron Date: Mon, 16 Sep 2024 07:40:26 -0700 Subject: [PATCH] Add ct/pairdrop.sh --- ct/pairdrop.sh | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 ct/pairdrop.sh diff --git a/ct/pairdrop.sh b/ct/pairdrop.sh new file mode 100644 index 0000000..8a2d21f --- /dev/null +++ b/ct/pairdrop.sh @@ -0,0 +1,75 @@ +#!/usr/bin/env bash +source <(curl -s https://gitlab.peanutsmediaserver.com/aaron/pve-scripts/raw/branch/main/misc/build.func) + +# Copyright (c) 2024 aaron +# Author: aaron +# License: none +# https://gitlab.peanutsmediaserver.com/aaron/pve-scripts/raw/branch/main/LICENSE + +function header_info { +clear +cat <<"EOF" + ____ _ ____ + / __ \____ _(_)____/ __ \_________ ____ + / /_/ / __ `/ / ___/ / / / ___/ __ \/ __ \ + / ____/ /_/ / / / / /_/ / / / /_/ / /_/ / +/_/ \__,_/_/_/ /_____/_/ \____/ .___/ + /_/ +EOF +} +header_info +echo -e "Loading..." +APP="PairDrop" +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="yes" + MTU="" + SD="" + NS="" + MAC="" + VLAN="" + SSH="no" + VERB="no" + echo_default +} + +function update_script() { +header_info +if [[ ! -d /opt/pairdrop ]]; then msg_error "No ${APP} Installation Found!"; exit; fi +msg_info "Updating $APP" +systemctl stop pairdrop +cd /opt/pairdrop +git pull +npm install +systemctl start pairdrop +msg_ok "Updated $APP" +exit +} + +start +build_container +description + +msg_ok "Completed Successfully!\n" +echo -e "${APP} should be reachable by going to the following URL. deadass. + ${BL}http://${IP}:3000${CL} \n" \ No newline at end of file