2024-05-28 04:59:56 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 tteck
|
2024-05-28 04:59:56 -04:00
|
|
|
# Author: tteck (tteckster)
|
2025-03-04 17:54:20 +01:00
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
# Source: https://notifiarr.com/
|
2024-05-28 04:59:56 -04:00
|
|
|
|
2025-03-24 14:20:56 +01:00
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
2024-05-28 04:59:56 -04:00
|
|
|
color
|
|
|
|
|
verb_ip6
|
|
|
|
|
catch_errors
|
|
|
|
|
setting_up_container
|
|
|
|
|
network_check
|
|
|
|
|
update_os
|
|
|
|
|
|
2025-12-25 15:21:00 +01:00
|
|
|
msg_info "Setting up Notifiarr"
|
2024-05-28 05:12:08 -04:00
|
|
|
$STD groupadd notifiarr
|
|
|
|
|
$STD useradd -g notifiarr notifiarr
|
2025-12-25 15:21:00 +01:00
|
|
|
setup_deb822_repo \
|
|
|
|
|
"notifiarr" \
|
|
|
|
|
"https://packagecloud.io/golift/pkgs/gpgkey" \
|
|
|
|
|
"https://packagecloud.io/golift/pkgs/ubuntu" \
|
|
|
|
|
"focal"
|
2025-10-15 22:29:48 +02:00
|
|
|
$STD apt install -y notifiarr
|
2025-12-25 15:21:00 +01:00
|
|
|
msg_ok "Setup Notifiarr"
|
2024-05-28 04:59:56 -04:00
|
|
|
|
|
|
|
|
motd_ssh
|
|
|
|
|
customize
|
2025-11-22 17:27:13 +01:00
|
|
|
cleanup_lxc
|