-
released this
2026-02-15 09:13:37 +00:00 | 38 commits to main since this releaseCRITICAL FIX: Operator block error
Problem: 'No Operator block for your host'
Cause: snomask in wrong location
SOLUTION:
✅ MOVED snomask to Class Opers (correct location)
✅ REMOVED snomask from Operator block
BEFORE (WRONG):
Operator { snomask = '+s +o...'; } ← WRONG!
AFTER (CORRECT):
Class Opers { snomask = '+s +o...'; } ← CORRECT!
Operator { no snomask } ← CORRECT!
WHY:
From doc/example.conf:
'snomask applies only to classes used for Operator blocks'
→ snomask belongs in Class, NOT in Operator!
UPGRADE: git checkout v1.7.3 && ./install.sh
Manual fix: Move snomask from Operator to Class OpersDownloads