From 20257df7f9b6ca45735b61a6fb4096bff7d4359f Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Tue, 2 Dec 2025 13:40:01 +0100 Subject: [PATCH] d/control: Remove deprecated check_ntp --- debian/NEWS | 1 + debian/rules | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/NEWS b/debian/NEWS index ecf0227..93e4a41 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -3,6 +3,7 @@ monitoring-plugins (2.4.0-5) unstable; urgency=medium Priority of check_curl alternative for check_http is now higher then check_http.deprecated, which means calling check_http is now check_curl. You can change that by: update-alternatives --config check_http + Removed also deprecated check_ntp from package. -- Jan Wagner Thu, 2 Dec 2025 12:49:36 +0100 diff --git a/debian/rules b/debian/rules index 1dc8dd9..6ab0efc 100755 --- a/debian/rules +++ b/debian/rules @@ -158,6 +158,8 @@ install: build done # rename check_http to check_http_deprecated for making use of update-alternatives mv ${NP_BASIC_DIR}/${NP_LIBEXEC}/check_http ${NP_BASIC_DIR}/${NP_LIBEXEC}/check_http.deprecated + # remove deprecated check_ntp + rm ${NP_BASIC_DIR}/${NP_LIBEXEC}/check_ntp # slit out common files for p in ${common_files}; do \ mv ${NP_BASIC_DIR}/${NP_LIBEXEC}/$$p ${NP_COMMON_DIR}/${NP_LIBEXEC}; \