diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2026-04-08 11:36:53 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2026-04-08 11:37:17 +0000 |
| commit | a0718fd0e19f71454f365d682e42aa05944be72a (patch) | |
| tree | 2c72f012dd655d4c12853ddb6fed92e30ee75220 | |
| parent | 29c30d11b98099966e48157a846576c41e5aa920 (diff) | |
security/ossec-hids-local-config: Unbreak
PR: 294020
MFH: 2026Q2
Differential Revision: https://reviews.freebsd.org/D56303
(cherry picked from commit 082e36892d5c1f00fb726a360d7484090e57b343)
| -rw-r--r-- | security/ossec-hids-local-config/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/ossec-hids-local-config/Makefile b/security/ossec-hids-local-config/Makefile index f8ddc39f486b..d2a73f328815 100644 --- a/security/ossec-hids-local-config/Makefile +++ b/security/ossec-hids-local-config/Makefile @@ -94,10 +94,10 @@ COMMAND_CONF= ${COMMAND_CONF_DIR}/command.conf.sample RULES_DIR= ${OSSEC_DIR}/rules .if empty(USER) -USER=$$(${ID} -un) +USER!=id -un .endif .if empty(GROUP) -GROUP=$$(${ID} -gn) +GROUP!=id -gn .endif OSSEC_USER= ossec |
