#1109401 mon-contrib: [PATCH] debian/rules: re-enable https.monitor

Package:
mon-contrib
Source:
mon-contrib
Description:
contributed tools, monitors and alert for mon
Submitter:
Joe Rayhawk
Date:
2025-07-16 18:27:02 UTC
Severity:
normal
Tags:
#1109401#5
Date:
2025-07-16 14:29:31 UTC
From:
To:
This patch anchors the inverted match on 'ps.monitor' to where it stops
causing collateral damage on 'https.monitor'
---
 debian/rules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/rules b/debian/rules
index 2ded78f..765af49 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,7 +7,7 @@

 ALERT_LIST_ORIG := $(shell find alerts -name "*.alert" -print | sort)
 ALERT_LIST_DOCS := $(shell find alerts -name "*.README" -print | sort)
-MONITOR_LIST_ORIG := $(shell find monitors -name "*.monitor" -print | grep -v ps.monitor | grep -v remote.monitor | grep -v softraid.monitor | sort)
+MONITOR_LIST_ORIG := $(shell find monitors -name "*.monitor" -not -regex '.+/\(softraid\|startremote\|remote\|ps\).monitor' -print | sort)
 MONITOR_LIST_DOCS := $(shell find monitors -name "*.README" -print | sort)