From 6ee9ea93f31d5af0fffbc31da935753d5a926e77 Mon Sep 17 00:00:00 2001 From: James Adams Date: Mon, 16 Dec 2024 14:51:56 +0000 Subject: [PATCH] ncm-systemd: Fix bug in syslog_facility regexp --- ncm-systemd/src/main/pan/components/systemd/schema.pan | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ncm-systemd/src/main/pan/components/systemd/schema.pan b/ncm-systemd/src/main/pan/components/systemd/schema.pan index 8b37395caf..8508c5b90b 100644 --- a/ncm-systemd/src/main/pan/components/systemd/schema.pan +++ b/ncm-systemd/src/main/pan/components/systemd/schema.pan @@ -17,7 +17,7 @@ type hwloc_location = string with match(SELF, '^[\w:.]+$'); syslog facility to use when logging to syslog } type syslog_facility = string with match(SELF, - '^(kern|user|mail|daemon|auth|syslog|lprnews|uucp|cron|authpriv|ftp|local[0-7])$' + '^(kern|user|mail|daemon|auth|syslog|lpr|news|uucp|cron|authpriv|ftp|local[0-7])$' ); @documentation{