aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorGregory Neil Shapiro <gshapiro@FreeBSD.org>2002-04-20 19:04:59 +0000
committerGregory Neil Shapiro <gshapiro@FreeBSD.org>2002-04-20 19:04:59 +0000
commitb56f8802e5c843ff007db4a7172d9d8e61950c47 (patch)
treef74f34018b206d4d30ed466f3e9426142d312cf5 /Makefile.inc1
parent64928717a3f90e7bcbc923e7f070384d5176c278 (diff)
downloadsrc-b56f8802e5c843ff007db4a7172d9d8e61950c47.tar.gz
src-b56f8802e5c843ff007db4a7172d9d8e61950c47.zip
Despite the fact that it is documented in the handbook, the release notes,
and UPDATING and has been posted to both freebsd-current and freebsd-stable, users are still not adding the required smmsp user and group before doing an installworld. Therefore, don't let users do an installworld unless they have followed directions. Add a new installcheck Makefile target which installworld runs before actually starting the installation. This target can be used by other parts of userland as well. The first addition to the target is to check for the smmsp user and group if NO_SENDMAIL isn't defined. Others may add checks to this target as they see fit. MFC after: 1 week
Notes
Notes: svn path=/head/; revision=95146
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc119
1 files changed, 18 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 1d20a5e5c43c..5468f0f3b083 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -313,11 +313,28 @@ everything:
cd ${.CURDIR}; ${WMAKE} all
#
+# installcheck
+#
+# Checks to be sure system is ready for installworld
+#
+installcheck:
+.if !defined(NO_SENDMAIL)
+ @if ! `grep -q '^smmsp:' /etc/passwd`; then \
+ echo "ERROR: Required smmsp user is missing, see /usr/src/UPDATING."; \
+ false; \
+ fi
+ @if ! `grep -q '^smmsp:' /etc/group`; then \
+ echo "ERROR: Required smmsp group is missing, see /usr/src/UPDATING."; \
+ false; \
+ fi
+.endif
+
+#
# installworld
#
# Installs everything compiled by a 'buildworld'.
#
-installworld:
+installworld: installcheck
mkdir -p ${INSTALLTMP}
for prog in [ awk cat chflags chmod chown date echo egrep find grep \
ln make makewhatis mkdir mtree mv perl rm sed sh sysctl \