From fd24c835406f0b898deb52eceb364c9186f3e6de Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Thu, 2 Oct 2025 18:29:07 +0200 Subject: [PATCH] Delete install/ntfy-install.sh --- install/ntfy-install.sh | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 install/ntfy-install.sh diff --git a/install/ntfy-install.sh b/install/ntfy-install.sh deleted file mode 100644 index fb7547c3..00000000 --- a/install/ntfy-install.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2025 tteck -# Author: tteck (tteckster) | Co-Author: CrazyWolf13 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://ntfy.sh/ - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -msg_info "Installing ntfy" -mkdir -p /etc/apt/keyrings -sudo curl -fsSL -o /etc/apt/keyrings/ntfy.gpg https://archive.ntfy.sh/apt/keyring.gpg - -cat <<'EOF' >/etc/apt/sources.list.d/ntfy.sources -Types: deb -URIs: https://archive.ntfy.sh/apt/ -Suites: stable -Components: main -Signed-By: /etc/apt/keyrings/ntfy.gpg -EOF - -$STD apt update -$STD apt install -y ntfy -systemctl enable -q --now ntfy -msg_ok "Installed ntfy" - -motd_ssh -customize - -msg_info "Cleaning up" -$STD apt -y autoremove -$STD apt -y autoclean -msg_ok "Cleaned"