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:36:53 +0000 |
| commit | 082e36892d5c1f00fb726a360d7484090e57b343 (patch) | |
| tree | f7d25d9f5a8169d48883ae7fecbc175b84640b98 | |
| parent | ec26aa92daf256db0c22c78f513f35fbce9adb08 (diff) | |
security/ossec-hids-local-config: Unbreak
PR: 294020
MFH: 2026Q2
Differential Revision: https://reviews.freebsd.org/D56303
| -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 |
