diff options
-rw-r--r-- | Makefile.inc1 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 4bc728a..0cda2ae 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -418,6 +418,20 @@ installcheck: ${SPECIAL_INSTALLCHECKS} false; \ fi .endif +.if !defined(NO_PF) + @if ! `id -u proxy > /dev/null`; then \ + echo "ERROR: Required proxy user is missing, see /usr/src/UPDATING."; \ + false; \ + fi + @if ! `id -g proxy > /dev/null`; then \ + echo "ERROR: Required proxy group is missing, see /usr/src/UPDATING."; \ + false; \ + fi + @if ! `id -g authpf > /dev/null`; then \ + echo "ERROR: Required authpf group is missing, see /usr/src/UPDATING."; \ + false; \ + fi +.endif # # distributeworld |