Files
ProxmoxVE/install/notifiarr-install.sh

34 lines
836 B
Bash
Raw Normal View History

2024-05-28 04:59:56 -04:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2024-05-28 04:59:56 -04:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://notifiarr.com/
2024-05-28 04:59:56 -04: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
msg_info "Installing Notifiarr"
2024-05-28 05:12:08 -04:00
$STD groupadd notifiarr
$STD useradd -g notifiarr notifiarr
curl -fsSL "https://packagecloud.io/golift/pkgs/gpgkey" | gpg --dearmor >/usr/share/keyrings/golift-archive-keyring.gpg
cat <<EOF >/etc/apt/sources.list.d/golift.sources
Types: deb
URIs: https://packagecloud.io/golift/pkgs/ubuntu
Suites: focal
Components: main
Signed-By: /usr/share/keyrings/golift-archive-keyring.gpg
EOF
$STD apt update
$STD apt install -y notifiarr
2024-05-28 04:59:56 -04:00
msg_ok "Installed Notifiarr"
motd_ssh
customize
cleanup_lxc