diff options
author | Xavier Beaudouin <kiwi@FreeBSD.org> | 2025-06-27 16:07:47 +0200 |
---|---|---|
committer | Xavier Beaudouin <kiwi@FreeBSD.org> | 2025-06-27 16:10:54 +0200 |
commit | 8fdc28d8640e75adfbc94eb8172d6b69b3f114ae (patch) | |
tree | 662d009e1d5506f7cd22bcd900114a7c1e1ae0c5 | |
parent | textproc/p5-YAML-PP: Update to 0.39.0 (diff) |
www/apache24: Allow overriding USERS and GROUPS via make.conf
It is a welcome addition for those building their own apache24 package
with custom UID/GID.
PR: 284194
Sponsored by: Klara, Inc.
Approved By: 0mp (mentor)
Approved By: maintainer timeout
Differential Revision: https://reviews.freebsd.org/D48522
Diffstat (limited to '')
-rw-r--r-- | www/apache24/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache24/Makefile b/www/apache24/Makefile index 2de058d2e090..3b171ae3ef8c 100644 --- a/www/apache24/Makefile +++ b/www/apache24/Makefile @@ -33,8 +33,8 @@ SUB_FILES= pkg-install pkg-deinstall # Fallback MPM after switching from static to modular MPM SUB_LIST+= MPMF="000_mpm_prefork_fallback.conf" -USERS= www -GROUPS= www +USERS?= ${WWWOWN} +GROUPS?= ${WWWGRP} .include "${.CURDIR}/Makefile.options" .include "${.CURDIR}/Makefile.options.desc" |