From d5031be72905f876fbb69d63dbba92cdc51bf7db Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 28 May 2024 04:59:56 -0400 Subject: [PATCH 1/7] Create notifiarr-install.com --- install/notifiarr-install.com | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 install/notifiarr-install.com diff --git a/install/notifiarr-install.com b/install/notifiarr-install.com new file mode 100644 index 000000000..3968d5351 --- /dev/null +++ b/install/notifiarr-install.com @@ -0,0 +1,37 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2024 tteck +# Author: tteck (tteckster) +# 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 + +msg_info "Installing Dependencies" +$STD apt-get install -y curl +$STD apt-get install -y sudo +$STD apt-get install -y mc +$STD apt-get install -y gpg +msg_ok "Installed Dependencies" + +msg_info "Installing Notifiarr" +$STD groupadd notifiarr +$STD useradd -g notifiarr notifiarr +wget -qO- https://packagecloud.io/golift/pkgs/gpgkey | gpg --dearmor >/usr/share/keyrings/golift-archive-keyring.gpg +echo "deb [signed-by=/usr/share/keyrings/golift-archive-keyring.gpg] https://packagecloud.io/golift/pkgs/ubuntu focal main" >/etc/apt/sources.list.d/golift.list +$STD apt-get install -y notifiarr +msg_ok "Installed Notifiarr" + +motd_ssh +customize + +msg_info "Cleaning up" +$STD apt-get -y autoremove +$STD apt-get -y autoclean +msg_ok "Cleaned" From 47b6fd5e8aa921f486a63170088ffe800e26be02 Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 28 May 2024 05:01:01 -0400 Subject: [PATCH 2/7] Create notifiarr.sh --- ct/notifiarr.sh | 71 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 ct/notifiarr.sh diff --git a/ct/notifiarr.sh b/ct/notifiarr.sh new file mode 100644 index 000000000..09f3d170d --- /dev/null +++ b/ct/notifiarr.sh @@ -0,0 +1,71 @@ +#!/usr/bin/env bash +source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func) +# Copyright (c) 2021-2024 tteck +# Author: tteck (tteckster) +# License: MIT +# https://github.com/tteck/Proxmox/raw/main/LICENSE + +function header_info { +clear +cat <<"EOF" + _ __ __ _ _____ + / | / /___ / /_(_) __(_)___ ___________ + / |/ / __ \/ __/ / /_/ / __ `/ ___/ ___/ + / /| / /_/ / /_/ / __/ / /_/ / / / / +/_/ |_/\____/\__/_/_/ /_/\__,_/_/ /_/ + +EOF +} +header_info +echo -e "Loading..." +APP="Notifiarr" +var_disk="2" +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/apt/sources.list.d/golift.list ]]; then msg_error "No ${APP} Installation Found!"; exit; fi +msg_info "Updating $APP" +apt-get update &>/dev/null +apt-get -y upgrade &>/dev/null +msg_ok "Updated $APP" +exit +} + +start +build_container +description + +msg_ok "Completed Successfully!\n" +echo -e "${APP} setup should be reachable by going to the following URL. + ${BL}http://${IP}:5454${CL} \n" From 80046821af85d7fca7f33ca93c18a74bb8fd54c5 Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 28 May 2024 05:03:40 -0400 Subject: [PATCH 3/7] Rename notifiarr-install.com to notifiarr-install.sh --- install/{notifiarr-install.com => notifiarr-install.sh} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename install/{notifiarr-install.com => notifiarr-install.sh} (100%) diff --git a/install/notifiarr-install.com b/install/notifiarr-install.sh similarity index 100% rename from install/notifiarr-install.com rename to install/notifiarr-install.sh From 3dce2fb7ddde9c6aa428a7c99758c42b1fc2e806 Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 28 May 2024 05:08:19 -0400 Subject: [PATCH 4/7] Update notifiarr-install.sh tweak --- install/notifiarr-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/notifiarr-install.sh b/install/notifiarr-install.sh index 3968d5351..5ebac2b88 100644 --- a/install/notifiarr-install.sh +++ b/install/notifiarr-install.sh @@ -21,8 +21,8 @@ $STD apt-get install -y gpg msg_ok "Installed Dependencies" msg_info "Installing Notifiarr" -$STD groupadd notifiarr -$STD useradd -g notifiarr notifiarr +groupadd notifiarr &>/dev/null +useradd -g notifiarr notifiarr &>/dev/null wget -qO- https://packagecloud.io/golift/pkgs/gpgkey | gpg --dearmor >/usr/share/keyrings/golift-archive-keyring.gpg echo "deb [signed-by=/usr/share/keyrings/golift-archive-keyring.gpg] https://packagecloud.io/golift/pkgs/ubuntu focal main" >/etc/apt/sources.list.d/golift.list $STD apt-get install -y notifiarr From 37ac28da06fec64577978e4e239b5caf10784a7b Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 28 May 2024 05:12:08 -0400 Subject: [PATCH 5/7] Update notifiarr-install.sh tweak --- install/notifiarr-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install/notifiarr-install.sh b/install/notifiarr-install.sh index 5ebac2b88..a90217c0e 100644 --- a/install/notifiarr-install.sh +++ b/install/notifiarr-install.sh @@ -21,10 +21,11 @@ $STD apt-get install -y gpg msg_ok "Installed Dependencies" msg_info "Installing Notifiarr" -groupadd notifiarr &>/dev/null -useradd -g notifiarr notifiarr &>/dev/null +$STD groupadd notifiarr +$STD useradd -g notifiarr notifiarr wget -qO- https://packagecloud.io/golift/pkgs/gpgkey | gpg --dearmor >/usr/share/keyrings/golift-archive-keyring.gpg echo "deb [signed-by=/usr/share/keyrings/golift-archive-keyring.gpg] https://packagecloud.io/golift/pkgs/ubuntu focal main" >/etc/apt/sources.list.d/golift.list +$STD apt-get update $STD apt-get install -y notifiarr msg_ok "Installed Notifiarr" From 7ba1459286dd2115d319ed81c0b6d791e7fcd2c1 Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 28 May 2024 05:15:57 -0400 Subject: [PATCH 6/7] Update notifiarr.sh tweak --- ct/notifiarr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/notifiarr.sh b/ct/notifiarr.sh index 09f3d170d..ac63e454a 100644 --- a/ct/notifiarr.sh +++ b/ct/notifiarr.sh @@ -67,5 +67,5 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${APP} setup should be reachable by going to the following URL. +echo -e "${APP} should be reachable by going to the following URL. ${BL}http://${IP}:5454${CL} \n" From 7446dc4c73708a5130a93cb5fdb1c01c8f3d8bd3 Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 28 May 2024 05:24:16 -0400 Subject: [PATCH 7/7] Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index df5ba2125..12d94730a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,13 @@ - All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment. - 🚨 **The scripts in the repository will no longer provide support for Proxmox VE 7 starting from July 2024 (scripts will not execute on PVE7). Subsequent Proxmox VE - Support Lifecycle** +## 2024-05-28 + +### Changed + +- **Notifiarr LXC** + - NEW Script + ## 2024-05-25 ### Changed