diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2002-04-20 19:04:59 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2002-04-20 19:04:59 +0000 |
commit | d0aa6dec50d73ea0941349617d4b1985e2f8b285 (patch) | |
tree | f74f34018b206d4d30ed466f3e9426142d312cf5 /Makefile | |
parent | 5badd84013a2d038292544a680b317349abf2830 (diff) | |
download | FreeBSD-src-d0aa6dec50d73ea0941349617d4b1985e2f8b285.zip FreeBSD-src-d0aa6dec50d73ea0941349617d4b1985e2f8b285.tar.gz |
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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -84,9 +84,9 @@ # TGTS= afterdistribute all all-man buildkernel buildworld checkdpadd clean \ cleandepend cleandir depend distribute distribworld everything \ - hierarchy includes install installkernel kernel reinstallkernel \ - installmost installworld libraries lint maninstall mk most obj \ - objlink regress rerelease tags update + hierarchy includes install installcheck installkernel kernel \ + reinstallkernel installmost installworld libraries lint maninstall \ + mk most obj objlink regress rerelease tags update PATH= /sbin:/bin:/usr/sbin:/usr/bin MAKE= PATH=${PATH} make -m ${.CURDIR}/share/mk -f Makefile.inc1 |