]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.sbin/mergemaster/mergemaster.sh
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.sbin / mergemaster / mergemaster.sh
1 #!/bin/sh
2
3 # mergemaster
4
5 # Compare files created by /usr/src/etc/Makefile (or the directory
6 # the user specifies) with the currently installed copies.
7
8 # Copyright 1998-2010 Douglas Barton
9 # DougB@FreeBSD.org
10
11 # $FreeBSD$
12
13 PATH=/bin:/usr/bin:/usr/sbin
14
15 display_usage () {
16   VERSION_NUMBER=`grep "[$]FreeBSD:" $0 | cut -d ' ' -f 4`
17   echo "mergemaster version ${VERSION_NUMBER}"
18   echo 'Usage: mergemaster [-scrvhpCP] [-a|[-iFU]]'
19   echo '    [-m /path] [-t /path] [-d] [-u N] [-w N] [-A arch] [-D /path]'
20   echo "Options:"
21   echo "  -s  Strict comparison (diff every pair of files)"
22   echo "  -c  Use context diff instead of unified diff"
23   echo "  -r  Re-run on a previously cleaned directory (skip temproot creation)"
24   echo "  -v  Be more verbose about the process, include additional checks"
25   echo "  -a  Leave all files that differ to merge by hand"
26   echo "  -h  Display more complete help"
27   echo '  -i  Automatically install files that do not exist in destination directory'
28   echo '  -p  Pre-buildworld mode, only compares crucial files'
29   echo '  -F  Install files that differ only by revision control Id ($FreeBSD)'
30   echo '  -C  Compare local rc.conf variables to the defaults'
31   echo '  -P  Preserve files that are overwritten'
32   echo "  -U  Attempt to auto upgrade files that have not been user modified"
33   echo ''
34   echo "  -m /path/directory  Specify location of source to do the make in"
35   echo "  -t /path/directory  Specify temp root directory"
36   echo "  -d  Add date and time to directory name (e.g., /var/tmp/temproot.`date +%m%d.%H.%M`)"
37   echo "  -u N  Specify a numeric umask"
38   echo "  -w N  Specify a screen width in columns to sdiff"
39   echo "  -A architecture  Alternative architecture name to pass to make"
40   echo '  -D /path/directory  Specify the destination directory to install files to'
41   echo ''
42 }
43
44 display_help () {
45   echo "* To specify a directory other than /var/tmp/temproot for the"
46   echo "  temporary root environment, use -t /path/to/temp/root"
47   echo "* The -w option takes a number as an argument for the column width"
48   echo "  of the screen.  The default is 80."
49   echo '* The -a option causes mergemaster to run without prompting.'
50 }
51
52 # Loop allowing the user to use sdiff to merge files and display the merged
53 # file.
54 merge_loop () {
55   case "${VERBOSE}" in
56   '') ;;
57   *)
58       echo "   *** Type h at the sdiff prompt (%) to get usage help"
59       ;;
60   esac
61   echo ''
62   MERGE_AGAIN=yes
63   while [ "${MERGE_AGAIN}" = "yes" ]; do
64     # Prime file.merged so we don't blat the owner/group id's
65     cp -p "${COMPFILE}" "${COMPFILE}.merged"
66     sdiff -o "${COMPFILE}.merged" --text --suppress-common-lines \
67       --width=${SCREEN_WIDTH:-80} "${DESTDIR}${COMPFILE#.}" "${COMPFILE}"
68     INSTALL_MERGED=V
69     while [ "${INSTALL_MERGED}" = "v" -o "${INSTALL_MERGED}" = "V" ]; do
70       echo ''
71       echo "  Use 'i' to install merged file"
72       echo "  Use 'r' to re-do the merge"
73       echo "  Use 'v' to view the merged file"
74       echo "  Default is to leave the temporary file to deal with by hand"
75       echo ''
76       echo -n "    *** How should I deal with the merged file? [Leave it for later] "
77       read INSTALL_MERGED
78
79       case "${INSTALL_MERGED}" in
80       [iI])
81         mv "${COMPFILE}.merged" "${COMPFILE}"
82         echo ''
83         if mm_install "${COMPFILE}"; then
84           echo "     *** Merged version of ${COMPFILE} installed successfully"
85         else
86           echo "     *** Problem installing ${COMPFILE}, it will remain to merge by hand later"
87         fi
88         unset MERGE_AGAIN
89         ;;
90       [rR])
91         rm "${COMPFILE}.merged"
92         ;;
93       [vV])
94         ${PAGER} "${COMPFILE}.merged"
95         ;;
96       '')
97         echo "   *** ${COMPFILE} will remain for your consideration"
98         unset MERGE_AGAIN
99         ;;
100       *)
101         echo "invalid choice: ${INSTALL_MERGED}"
102         INSTALL_MERGED=V
103         ;;
104       esac
105     done
106   done
107 }
108
109 # Loop showing user differences between files, allow merge, skip or install
110 # options
111 diff_loop () {
112
113   HANDLE_COMPFILE=v
114
115   while [ "${HANDLE_COMPFILE}" = "v" -o "${HANDLE_COMPFILE}" = "V" -o \
116     "${HANDLE_COMPFILE}" = "NOT V" ]; do
117     if [ -f "${DESTDIR}${COMPFILE#.}" -a -f "${COMPFILE}" ]; then
118       if [ -n "${AUTO_UPGRADE}" -a -n "${CHANGED}" ]; then
119         case "${CHANGED}" in
120         *:${DESTDIR}${COMPFILE#.}:*) ;;         # File has been modified
121         *)
122           echo ''
123           echo "  *** ${COMPFILE} has not been user modified."
124           echo ''
125
126           if mm_install "${COMPFILE}"; then
127             echo "   *** ${COMPFILE} upgraded successfully"
128             echo ''
129             # Make the list print one file per line
130             AUTO_UPGRADED_FILES="${AUTO_UPGRADED_FILES}      ${DESTDIR}${COMPFILE#.}
131 "
132           else
133             echo "   *** Problem upgrading ${COMPFILE}, it will remain to merge by hand"
134           fi
135           return
136           ;;
137         esac
138       fi
139       if [ "${HANDLE_COMPFILE}" = "v" -o "${HANDLE_COMPFILE}" = "V" ]; then
140         echo ''
141         echo '   ======================================================================   '
142         echo ''
143         (
144           echo "  *** Displaying differences between ${COMPFILE} and installed version:"
145           echo ''
146           diff ${DIFF_FLAG} ${DIFF_OPTIONS} "${DESTDIR}${COMPFILE#.}" "${COMPFILE}"
147         ) | ${PAGER}
148         echo ''
149       fi
150     else
151       echo ''
152       echo "  *** There is no installed version of ${COMPFILE}"
153       echo ''
154       case "${AUTO_INSTALL}" in
155       [Yy][Ee][Ss])
156         echo ''
157         if mm_install "${COMPFILE}"; then
158           echo "   *** ${COMPFILE} installed successfully"
159           echo ''
160           # Make the list print one file per line
161           AUTO_INSTALLED_FILES="${AUTO_INSTALLED_FILES}      ${DESTDIR}${COMPFILE#.}
162 "
163         else
164           echo "   *** Problem installing ${COMPFILE}, it will remain to merge by hand"
165         fi
166         return
167         ;;
168       *)
169         NO_INSTALLED=yes
170         ;;
171       esac
172     fi
173
174     echo "  Use 'd' to delete the temporary ${COMPFILE}"
175     echo "  Use 'i' to install the temporary ${COMPFILE}"
176     case "${NO_INSTALLED}" in
177     '')
178       echo "  Use 'm' to merge the temporary and installed versions"
179       echo "  Use 'v' to view the diff results again"
180       ;;
181     esac
182     echo ''
183     echo "  Default is to leave the temporary file to deal with by hand"
184     echo ''
185     echo -n "How should I deal with this? [Leave it for later] "
186     read HANDLE_COMPFILE
187
188     case "${HANDLE_COMPFILE}" in
189     [dD])
190       rm "${COMPFILE}"
191       echo ''
192       echo "   *** Deleting ${COMPFILE}"
193       ;;
194     [iI])
195       echo ''
196       if mm_install "${COMPFILE}"; then
197         echo "   *** ${COMPFILE} installed successfully"
198       else
199         echo "   *** Problem installing ${COMPFILE}, it will remain to merge by hand"
200       fi
201       ;;
202     [mM])
203       case "${NO_INSTALLED}" in
204       '')
205         # interact with user to merge files
206         merge_loop
207         ;;
208       *)
209         echo ''
210         echo "   *** There is no installed version of ${COMPFILE}"
211         echo ''
212         HANDLE_COMPFILE="NOT V"
213         ;;
214       esac # End of "No installed version of file but user selected merge" test
215       ;;
216     [vV])
217       continue
218       ;;
219     '')
220       echo ''
221       echo "   *** ${COMPFILE} will remain for your consideration"
222       ;;
223     *)
224       # invalid choice, show menu again.
225       echo "invalid choice: ${HANDLE_COMPFILE}"
226       echo ''
227       HANDLE_COMPFILE="NOT V"
228       continue
229       ;;
230     esac  # End of "How to handle files that are different"
231   done
232   unset NO_INSTALLED
233   echo ''
234   case "${VERBOSE}" in
235   '') ;;
236   *)
237     sleep 3
238     ;;
239   esac
240 }
241
242 press_to_continue () {
243   local DISCARD
244   echo -n ' *** Press the [Enter] or [Return] key to continue '
245   read DISCARD
246 }
247
248 # Set the default path for the temporary root environment
249 #
250 TEMPROOT='/var/tmp/temproot'
251
252 # Read /etc/mergemaster.rc first so the one in $HOME can override
253 #
254 if [ -r /etc/mergemaster.rc ]; then
255   . /etc/mergemaster.rc
256 fi
257
258 # Read .mergemasterrc before command line so CLI can override
259 #
260 if [ -r "$HOME/.mergemasterrc" ]; then
261   . "$HOME/.mergemasterrc"
262 fi
263
264 # Check the command line options
265 #
266 while getopts ":ascrvhipCPm:t:du:w:D:A:FU" COMMAND_LINE_ARGUMENT ; do
267   case "${COMMAND_LINE_ARGUMENT}" in
268   A)
269     ARCHSTRING='TARGET_ARCH='${OPTARG}
270     ;;
271   F)
272     FREEBSD_ID=yes
273     ;;
274   U)
275     AUTO_UPGRADE=yes
276     ;;
277   s)
278     STRICT=yes
279     unset DIFF_OPTIONS
280     ;;
281   c)
282     DIFF_FLAG='-c'
283     ;;
284   r)
285     RERUN=yes
286     ;;
287   v)
288     case "${AUTO_RUN}" in
289     '') VERBOSE=yes ;;
290     esac
291     ;;
292   a)
293     AUTO_RUN=yes
294     unset VERBOSE
295     ;;
296   h)
297     display_usage
298     display_help
299     exit 0
300     ;;
301   i)
302     AUTO_INSTALL=yes
303     ;;
304   C)
305     COMP_CONFS=yes
306     ;;
307   P)
308     PRESERVE_FILES=yes
309     ;;
310   p)
311     PRE_WORLD=yes
312     unset COMP_CONFS
313     unset AUTO_RUN
314     ;;
315   m)
316     SOURCEDIR=${OPTARG}
317     ;;
318   t)
319     TEMPROOT=${OPTARG}
320     ;;
321   d)
322     TEMPROOT=${TEMPROOT}.`date +%m%d.%H.%M`
323     ;;
324   u)
325     NEW_UMASK=${OPTARG}
326     ;;
327   w)
328     SCREEN_WIDTH=${OPTARG}
329     ;;
330   D)
331     DESTDIR=${OPTARG}
332     ;;
333   *)
334     display_usage
335     exit 1
336     ;;
337   esac
338 done
339
340 if [ -n "$AUTO_RUN" ]; then
341   if [ -n "$FREEBSD_ID" -o -n "$AUTO_UPGRADE" -o -n "$AUTO_INSTALL" ]; then
342     echo ''
343     echo "*** You have included the -a option along with one or more options"
344     echo '    that indicate that you wish mergemaster to actually make updates'
345     echo '    (-F, -U, or -i), however these options are not compatible.'
346     echo '    Please read mergemaster(8) for more information.'
347     echo ''
348     exit 1
349   fi
350 fi
351
352 # Assign the location of the mtree database
353 #
354 MTREEDB=${MTREEDB:-${DESTDIR}/var/db}
355 MTREEFILE="${MTREEDB}/mergemaster.mtree"
356
357 # Don't force the user to set this in the mergemaster rc file
358 if [ -n "${PRESERVE_FILES}" -a -z "${PRESERVE_FILES_DIR}" ]; then
359   PRESERVE_FILES_DIR=/var/tmp/mergemaster/preserved-files-`date +%y%m%d-%H%M%S`
360   mkdir -p ${PRESERVE_FILES_DIR}
361 fi
362
363 # Check for the mtree database in DESTDIR
364 case "${AUTO_UPGRADE}" in
365 '') ;;  # If the option is not set no need to run the test or warn the user
366 *)
367   if [ ! -s "${MTREEFILE}" ]; then
368     echo ''
369     echo "*** Unable to find mtree database (${MTREEFILE})."
370     echo "    Skipping auto-upgrade on this run."
371     echo "    It will be created for the next run when this one is complete."
372     echo ''
373     case "${AUTO_RUN}" in
374     '')
375       press_to_continue
376       ;;
377     esac
378     unset AUTO_UPGRADE
379   fi
380   ;;
381 esac
382
383 if [ -e "${DESTDIR}/etc/fstab" ]; then
384   if grep -q nodev ${DESTDIR}/etc/fstab; then
385     echo ''
386     echo "*** You have the deprecated 'nodev' option in ${DESTDIR}/etc/fstab."
387     echo "    This can prevent the filesystem from being mounted on reboot."
388     echo "    Please update your fstab before continuing."
389     echo "    See fstab(5) for more information."
390     echo ''
391     exit 1
392   fi
393 fi
394
395 echo ''
396
397 # If the user has a pager defined, make sure we can run it
398 #
399 case "${DONT_CHECK_PAGER}" in
400 '')
401 check_pager () {
402   while ! type "${PAGER%% *}" >/dev/null; do
403     echo " *** Your PAGER environment variable specifies '${PAGER}', but"
404     echo "     due to the limited PATH that I use for security reasons,"
405     echo "     I cannot execute it.  So, what would you like to do?"
406     echo ''
407     echo "  Use 'e' to exit mergemaster and fix your PAGER variable"
408     if [ -x /usr/bin/less -o -x /usr/local/bin/less ]; then
409     echo "  Use 'l' to set PAGER to 'less' for this run"
410     fi
411     echo "  Use 'm' to use plain old 'more' as your PAGER for this run"
412     echo ''
413     echo "  Default is to use plain old 'more' "
414     echo ''
415     echo -n "What should I do? [Use 'more'] "
416     read FIXPAGER
417
418     case "${FIXPAGER}" in
419     [eE])
420        exit 0
421        ;;
422     [lL])
423        if [ -x /usr/bin/less ]; then
424          PAGER=/usr/bin/less
425        elif [ -x /usr/local/bin/less ]; then
426          PAGER=/usr/local/bin/less
427        else
428          echo ''
429          echo " *** Fatal Error:"
430          echo "     You asked to use 'less' as your pager, but I can't"
431          echo "     find it in /usr/bin or /usr/local/bin"
432          exit 1
433        fi
434        ;;
435     [mM]|'')
436        PAGER=more
437        ;;
438     *)
439        echo ''
440        echo "invalid choice: ${FIXPAGER}"
441     esac
442     echo ''
443   done
444 }
445   if [ -n "${PAGER}" ]; then
446     check_pager
447   fi
448   ;;
449 esac
450
451 # If user has a pager defined, or got assigned one above, use it.
452 # If not, use more.
453 #
454 PAGER=${PAGER:-more}
455
456 if [ -n "${VERBOSE}" -a ! "${PAGER}" = "more" ]; then
457   echo " *** You have ${PAGER} defined as your pager so we will use that"
458   echo ''
459   sleep 3
460 fi
461
462 # Assign the diff flag once so we will not have to keep testing it
463 #
464 DIFF_FLAG=${DIFF_FLAG:--u}
465
466 # Assign the source directory
467 #
468 SOURCEDIR=${SOURCEDIR:-/usr/src}
469 if [ ! -f ${SOURCEDIR}/Makefile.inc1 -a \
470    -f ${SOURCEDIR}/../Makefile.inc1 ]; then
471   echo " *** The source directory you specified (${SOURCEDIR})"
472   echo "     will be reset to ${SOURCEDIR}/.."
473   echo ''
474   sleep 3
475   SOURCEDIR=${SOURCEDIR}/..
476 fi
477
478 # Setup make to use system files from SOURCEDIR
479 MM_MAKE="make ${ARCHSTRING} -m ${SOURCEDIR}/share/mk"
480
481 # Check DESTDIR against the mergemaster mtree database to see what
482 # files the user changed from the reference files.
483 #
484 if [ -n "${AUTO_UPGRADE}" -a -s "${MTREEFILE}" ]; then
485         CHANGED=:
486         for file in `mtree -eqL -f ${MTREEFILE} -p ${DESTDIR}/ \
487                 2>/dev/null | awk '($2 == "changed") {print $1}'`; do
488                 if [ -f "${DESTDIR}/$file" ]; then
489                         CHANGED="${CHANGED}${DESTDIR}/${file}:"
490                 fi
491         done
492         [ "$CHANGED" = ':' ] && unset CHANGED
493 fi
494
495 # Check the width of the user's terminal
496 #
497 if [ -t 0 ]; then
498   w=`tput columns`
499   case "${w}" in
500   0|'') ;; # No-op, since the input is not valid
501   *)
502     case "${SCREEN_WIDTH}" in
503     '') SCREEN_WIDTH="${w}" ;;
504     "${w}") ;; # No-op, since they are the same
505     *)
506       echo -n "*** You entered ${SCREEN_WIDTH} as your screen width, but stty "
507       echo "thinks it is ${w}."
508       echo ''
509       echo -n "What would you like to use? [${w}] "
510       read SCREEN_WIDTH
511       case "${SCREEN_WIDTH}" in
512       '') SCREEN_WIDTH="${w}" ;;
513       esac
514       ;;
515     esac
516   esac
517 fi
518
519 # Define what CVS $Id tag to look for to aid portability.
520 #
521 CVS_ID_TAG=FreeBSD
522
523 delete_temproot () {
524   rm -rf "${TEMPROOT}" 2>/dev/null
525   chflags -R 0 "${TEMPROOT}" 2>/dev/null
526   rm -rf "${TEMPROOT}" || { echo "*** Unable to delete ${TEMPROOT}";  exit 1; }
527 }
528
529 case "${RERUN}" in
530 '')
531   # Set up the loop to test for the existence of the
532   # temp root directory.
533   #
534   TEST_TEMP_ROOT=yes
535   while [ "${TEST_TEMP_ROOT}" = "yes" ]; do
536     if [ -d "${TEMPROOT}" ]; then
537       echo "*** The directory specified for the temporary root environment,"
538       echo "    ${TEMPROOT}, exists.  This can be a security risk if untrusted"
539       echo "    users have access to the system."
540       echo ''
541       case "${AUTO_RUN}" in
542       '')
543         echo "  Use 'd' to delete the old ${TEMPROOT} and continue"
544         echo "  Use 't' to select a new temporary root directory"
545         echo "  Use 'e' to exit mergemaster"
546         echo ''
547         echo "  Default is to use ${TEMPROOT} as is"
548         echo ''
549         echo -n "How should I deal with this? [Use the existing ${TEMPROOT}] "
550         read DELORNOT
551
552         case "${DELORNOT}" in
553         [dD])
554           echo ''
555           echo "   *** Deleting the old ${TEMPROOT}"
556           echo ''
557           delete_temproot
558           unset TEST_TEMP_ROOT
559           ;;
560         [tT])
561           echo "   *** Enter new directory name for temporary root environment"
562           read TEMPROOT
563           ;;
564         [eE])
565           exit 0
566           ;;
567         '')
568           echo ''
569           echo "   *** Leaving ${TEMPROOT} intact"
570           echo ''
571           unset TEST_TEMP_ROOT
572           ;;
573         *)
574           echo ''
575           echo "invalid choice: ${DELORNOT}"
576           echo ''
577           ;;
578         esac
579         ;;
580       *)
581         # If this is an auto-run, try a hopefully safe alternative then
582         # re-test anyway.
583         TEMPROOT=/var/tmp/temproot.`date +%m%d.%H.%M.%S`
584         ;;
585       esac
586     else
587       unset TEST_TEMP_ROOT
588     fi
589   done
590
591   echo "*** Creating the temporary root environment in ${TEMPROOT}"
592
593   if mkdir -p "${TEMPROOT}"; then
594     echo " *** ${TEMPROOT} ready for use"
595   fi
596
597   if [ ! -d "${TEMPROOT}" ]; then
598     echo ''
599     echo "  *** FATAL ERROR: Cannot create ${TEMPROOT}"
600     echo ''
601     exit 1
602   fi
603
604   echo " *** Creating and populating directory structure in ${TEMPROOT}"
605   echo ''
606
607   case "${VERBOSE}" in
608   '') ;;
609   *)
610     press_to_continue
611     ;;
612   esac
613
614   case "${PRE_WORLD}" in
615   '')
616     { cd ${SOURCEDIR} &&
617       case "${DESTDIR}" in
618       '') ;;
619       *)
620         ${MM_MAKE} DESTDIR=${DESTDIR} distrib-dirs >/dev/null
621         ;;
622       esac
623       od=${TEMPROOT}/usr/obj
624       ${MM_MAKE} DESTDIR=${TEMPROOT} distrib-dirs >/dev/null &&
625       MAKEOBJDIRPREFIX=$od ${MM_MAKE} _obj SUBDIR_OVERRIDE=etc >/dev/null &&
626       MAKEOBJDIRPREFIX=$od ${MM_MAKE} everything SUBDIR_OVERRIDE=etc >/dev/null &&
627       MAKEOBJDIRPREFIX=$od ${MM_MAKE} DESTDIR=${TEMPROOT} distribution >/dev/null;} ||
628     { echo '';
629      echo "  *** FATAL ERROR: Cannot 'cd' to ${SOURCEDIR} and install files to";
630       echo "      the temproot environment";
631       echo '';
632       exit 1;}
633     ;;
634   *)
635     # Only set up files that are crucial to {build|install}world
636     { mkdir -p ${TEMPROOT}/etc &&
637       cp -p ${SOURCEDIR}/etc/master.passwd ${TEMPROOT}/etc &&
638       cp -p ${SOURCEDIR}/etc/group ${TEMPROOT}/etc;} ||
639     { echo '';
640       echo '  *** FATAL ERROR: Cannot copy files to the temproot environment';
641       echo '';
642       exit 1;}
643     ;;
644   esac
645
646   # Doing the inventory and removing files that we don't want to compare only
647   # makes sense if we are not doing a rerun, since we have no way of knowing
648   # what happened to the files during previous incarnations.
649   case "${VERBOSE}" in
650   '') ;;
651   *)
652     echo ''
653     echo ' *** The following files exist only in the installed version of'
654     echo "     ${DESTDIR}/etc.  In the vast majority of cases these files"
655     echo '     are necessary parts of the system and should not be deleted.'
656     echo '     However because these files are not updated by this process you'
657     echo '     might want to verify their status before rebooting your system.'
658     echo ''
659     press_to_continue
660     diff -qr ${DESTDIR}/etc ${TEMPROOT}/etc | grep "^Only in ${DESTDIR}/etc" | ${PAGER}
661     echo ''
662     press_to_continue
663     ;;
664   esac
665
666   # Avoid comparing the motd if the user specifies it in .mergemasterrc
667   # Compatibility shim to be removed in FreeBSD 9.x
668   case "${IGNORE_MOTD}" in
669   '') ;;
670   *) IGNORE_FILES="${IGNORE_FILES} /etc/motd"
671      echo ''
672      echo "*** You have the IGNORE_MOTD option set in your mergemaster rc file."
673      echo "    This option is deprecated in favor of the IGNORE_FILES option."
674      echo "    Please update your rc file accordingly."
675      echo ''
676      press_to_continue
677      ;;
678   esac
679
680   # Avoid comparing the following user specified files
681   for file in ${IGNORE_FILES}; do
682     test -e ${TEMPROOT}/${file} && unlink ${TEMPROOT}/${file}
683   done
684
685   # We really don't want to have to deal with files like login.conf.db, pwd.db,
686   # or spwd.db.  Instead, we want to compare the text versions, and run *_mkdb.
687   # Prompt the user to do so below, as needed.
688   #
689   rm -f ${TEMPROOT}/etc/*.db ${TEMPROOT}/etc/passwd
690
691   # We only need to compare things like freebsd.cf once
692   find ${TEMPROOT}/usr/obj -type f -delete 2>/dev/null
693
694   # Delete stuff we do not need to keep the mtree database small,
695   # and to make the actual comparison faster.
696   find ${TEMPROOT}/usr -type l -delete 2>/dev/null
697   find ${TEMPROOT} -type f -size 0 -delete 2>/dev/null
698   find -d ${TEMPROOT} -type d -empty -delete 2>/dev/null
699
700   # Build the mtree database in a temporary location.
701   case "${PRE_WORLD}" in
702   '') MTREENEW=`mktemp -t mergemaster.mtree`
703       mtree -ci -p ${TEMPROOT} -k size,md5digest > ${MTREENEW} 2>/dev/null
704       ;;
705   *) # We don't want to mess with the mtree database on a pre-world run or
706      # when re-scanning a previously-built tree.
707      ;;
708   esac
709   ;; # End of the "RERUN" test
710 esac
711
712 # Get ready to start comparing files
713
714 # Check umask if not specified on the command line,
715 # and we are not doing an autorun
716 #
717 if [ -z "${NEW_UMASK}" -a -z "${AUTO_RUN}" ]; then
718   USER_UMASK=`umask`
719   case "${USER_UMASK}" in
720   0022|022) ;;
721   *)
722     echo ''
723     echo " *** Your umask is currently set to ${USER_UMASK}.  By default, this script"
724     echo "     installs all files with the same user, group and modes that"
725     echo "     they are created with by ${SOURCEDIR}/etc/Makefile, compared to"
726     echo "     a umask of 022.  This umask allows world read permission when"
727     echo "     the file's default permissions have it."
728     echo ''
729     echo "     No world permissions can sometimes cause problems.  A umask of"
730     echo "     022 will restore the default behavior, but is not mandatory."
731     echo "     /etc/master.passwd is a special case.  Its file permissions"
732     echo "     will be 600 (rw-------) if installed."
733     echo ''
734     echo -n "What umask should I use? [${USER_UMASK}] "
735     read NEW_UMASK
736
737     NEW_UMASK="${NEW_UMASK:-$USER_UMASK}"
738     ;;
739   esac
740   echo ''
741 fi
742
743 CONFIRMED_UMASK=${NEW_UMASK:-0022}
744
745 #
746 # Warn users who still have old rc files
747 #
748 for file in atm devfs diskless1 diskless2 network network6 pccard \
749   serial syscons sysctl alpha amd64 i386 ia64 sparc64; do
750   if [ -f "${DESTDIR}/etc/rc.${file}" ]; then
751     OLD_RC_PRESENT=1
752     break
753   fi
754 done
755
756 case "${OLD_RC_PRESENT}" in
757 1)
758   echo ''
759   echo " *** There are elements of the old rc system in ${DESTDIR}/etc/."
760   echo ''
761   echo '     While these scripts will not hurt anything, they are not'
762   echo '     functional on an up to date system, and can be removed.'
763   echo ''
764
765   case "${AUTO_RUN}" in
766   '')
767     echo -n 'Move these files to /var/tmp/mergemaster/old_rc? [yes] '
768     read MOVE_OLD_RC
769
770     case "${MOVE_OLD_RC}" in
771     [nN]*) ;;
772     *)
773       mkdir -p /var/tmp/mergemaster/old_rc
774         for file in atm devfs diskless1 diskless2 network network6 pccard \
775           serial syscons sysctl alpha amd64 i386 ia64 sparc64; do
776           if [ -f "${DESTDIR}/etc/rc.${file}" ]; then
777             mv ${DESTDIR}/etc/rc.${file} /var/tmp/mergemaster/old_rc/
778           fi
779         done
780       echo '  The files have been moved'
781       press_to_continue
782       ;;
783     esac
784     ;;
785   *) ;;
786   esac
787 esac
788
789 # Use the umask/mode information to install the files
790 # Create directories as needed
791 #
792 install_error () {
793   echo "*** FATAL ERROR: Unable to install ${1} to ${2}"
794   echo ''
795   exit 1
796 }
797
798 do_install_and_rm () {
799   case "${PRESERVE_FILES}" in
800   [Yy][Ee][Ss])
801     if [ -f "${3}/${2##*/}" ]; then
802       mkdir -p ${PRESERVE_FILES_DIR}/${2%/*}
803       cp ${3}/${2##*/} ${PRESERVE_FILES_DIR}/${2%/*}
804     fi
805     ;;
806   esac
807
808   if [ ! -d "${3}/${2##*/}" ]; then
809     if install -m ${1} ${2} ${3}; then
810       unlink ${2}
811     else
812       install_error ${2} ${3}
813     fi
814   else
815     install_error ${2} ${3}
816   fi
817 }
818
819 # 4095 = "obase=10;ibase=8;07777" | bc
820 find_mode () {
821   local OCTAL
822   OCTAL=$(( ~$(echo "obase=10; ibase=8; ${CONFIRMED_UMASK}" | bc) & 4095 &
823     $(echo "obase=10; ibase=8; $(stat -f "%OMp%OLp" ${1})" | bc) ))
824   printf "%04o\n" ${OCTAL}
825 }
826
827 mm_install () {
828   local INSTALL_DIR
829   INSTALL_DIR=${1#.}
830   INSTALL_DIR=${INSTALL_DIR%/*}
831
832   case "${INSTALL_DIR}" in
833   '')
834     INSTALL_DIR=/
835     ;;
836   esac
837
838   if [ -n "${DESTDIR}${INSTALL_DIR}" -a ! -d "${DESTDIR}${INSTALL_DIR}" ]; then
839     DIR_MODE=`find_mode "${TEMPROOT}/${INSTALL_DIR}"`
840     install -d -o root -g wheel -m "${DIR_MODE}" "${DESTDIR}${INSTALL_DIR}" ||
841       install_error $1 ${DESTDIR}${INSTALL_DIR}
842   fi
843
844   FILE_MODE=`find_mode "${1}"`
845
846   if [ ! -x "${1}" ]; then
847     case "${1#.}" in
848     /etc/mail/aliases)
849       NEED_NEWALIASES=yes
850       ;;
851     /etc/login.conf)
852       NEED_CAP_MKDB=yes
853       ;;
854     /etc/services)
855       NEED_SERVICES_MKDB=yes
856       ;;
857     /etc/master.passwd)
858       do_install_and_rm 600 "${1}" "${DESTDIR}${INSTALL_DIR}"
859       NEED_PWD_MKDB=yes
860       DONT_INSTALL=yes
861       ;;
862     /.cshrc | /.profile)
863       local st_nlink
864
865       # install will unlink the file before it installs the new one,
866       # so we have to restore/create the link afterwards.
867       #
868       st_nlink=0                # In case the file does not yet exist
869       eval $(stat -s ${DESTDIR}${COMPFILE#.} 2>/dev/null)
870
871       do_install_and_rm "${FILE_MODE}" "${1}" "${DESTDIR}${INSTALL_DIR}"
872
873       if [ -n "${AUTO_INSTALL}" -a $st_nlink -gt 1 ]; then
874         HANDLE_LINK=l
875       else
876         case "${LINK_EXPLAINED}" in
877         '')
878           echo "   *** Historically BSD derived systems have had a"
879           echo "       hard link from /.cshrc and /.profile to"
880           echo "       their namesakes in /root.  Please indicate"
881           echo "       your preference below for bringing your"
882           echo "       installed files up to date."
883           echo ''
884           LINK_EXPLAINED=yes
885           ;;
886         esac
887
888         echo "   Use 'd' to delete the temporary ${COMPFILE}"
889         echo "   Use 'l' to delete the existing ${DESTDIR}/root/${COMPFILE##*/} and create the link"
890         echo ''
891         echo "   Default is to leave the temporary file to deal with by hand"
892         echo ''
893         echo -n "  How should I handle ${COMPFILE}? [Leave it to install later] "
894         read HANDLE_LINK
895       fi
896
897       case "${HANDLE_LINK}" in
898       [dD]*)
899         rm "${COMPFILE}"
900         echo ''
901         echo "   *** Deleting ${COMPFILE}"
902         ;;
903       [lL]*)
904         echo ''
905         unlink ${DESTDIR}/root/${COMPFILE##*/}
906         if ln ${DESTDIR}${COMPFILE#.} ${DESTDIR}/root/${COMPFILE##*/}; then
907           echo "   *** Link from ${DESTDIR}${COMPFILE#.} to ${DESTDIR}/root/${COMPFILE##*/} installed successfully"
908         else
909           echo "   *** Error linking ${DESTDIR}${COMPFILE#.} to ${DESTDIR}/root/${COMPFILE##*/}"
910           echo "   *** ${COMPFILE} will remain for your consideration"
911         fi
912         ;;
913       *)
914         echo "   *** ${COMPFILE} will remain for your consideration"
915         ;;
916       esac
917       return
918       ;;
919     esac
920
921     case "${DONT_INSTALL}" in
922     '')
923       do_install_and_rm "${FILE_MODE}" "${1}" "${DESTDIR}${INSTALL_DIR}"
924       ;;
925     *)
926       unset DONT_INSTALL
927       ;;
928     esac
929   else  # File matched -x
930     do_install_and_rm "${FILE_MODE}" "${1}" "${DESTDIR}${INSTALL_DIR}"
931   fi
932   return $?
933 }
934
935 if [ ! -d "${TEMPROOT}" ]; then
936         echo "*** FATAL ERROR: The temproot directory (${TEMPROOT})"
937         echo '                 has disappeared!'
938         echo ''
939         exit 1
940 fi
941
942 echo ''
943 echo "*** Beginning comparison"
944 echo ''
945
946 # Pre-world does not populate /etc/rc.d.
947 # It is very possible that a previous run would have deleted files in
948 # ${TEMPROOT}/etc/rc.d, thus creating a lot of false positives.
949 if [ -z "${PRE_WORLD}" -a -z "${RERUN}" ]; then
950   echo "   *** Checking ${DESTDIR}/etc/rc.d for stale files"
951   echo ''
952   cd "${DESTDIR}/etc/rc.d" &&
953   for file in *; do
954     if [ ! -e "${TEMPROOT}/etc/rc.d/${file}" ]; then
955       STALE_RC_FILES="${STALE_RC_FILES} ${file}"
956     fi
957   done
958   case "${STALE_RC_FILES}" in
959   ''|' *')
960     echo '   *** No stale files found'
961     ;;
962   *)
963     echo "   *** The following files exist in ${DESTDIR}/etc/rc.d but not in"
964     echo "       ${TEMPROOT}/etc/rc.d/:"
965     echo ''
966     echo "${STALE_RC_FILES}"
967     echo ''
968     echo '       The presence of stale files in this directory can cause the'
969     echo '       dreaded unpredictable results, and therefore it is highly'
970     echo '       recommended that you delete them.'
971     case "${AUTO_RUN}" in
972     '')
973       echo ''
974       echo -n '   *** Delete them now? [n] '
975       read DELETE_STALE_RC_FILES
976       case "${DELETE_STALE_RC_FILES}" in
977       [yY])
978         echo '      *** Deleting ... '
979         rm ${STALE_RC_FILES}
980         echo '                       done.'
981         ;;
982       *)
983         echo '      *** Files will not be deleted'
984         ;;
985       esac
986       sleep 2
987       ;;
988     *)
989       if [ -n "${DELETE_STALE_RC_FILES}" ]; then
990         echo '      *** Deleting ... '
991         rm ${STALE_RC_FILES}
992         echo '                       done.'
993       fi
994     esac
995     ;;
996   esac
997   echo ''
998 fi
999
1000 cd "${TEMPROOT}"
1001
1002 if [ -r "${MM_PRE_COMPARE_SCRIPT}" ]; then
1003   . "${MM_PRE_COMPARE_SCRIPT}"
1004 fi
1005
1006 # Things that were files/directories/links in one version can sometimes
1007 # change to something else in a newer version.  So we need to explicitly
1008 # test for this, and warn the user if what we find does not match.
1009 #
1010 for COMPFILE in `find . | sort` ; do
1011   if [ -e "${DESTDIR}${COMPFILE#.}" ]; then
1012     INSTALLED_TYPE=`stat -f '%HT' ${DESTDIR}${COMPFILE#.}`
1013   else
1014     continue
1015   fi
1016   TEMPROOT_TYPE=`stat -f '%HT' $COMPFILE`
1017
1018   if [ ! "$TEMPROOT_TYPE" = "$INSTALLED_TYPE" ]; then
1019     [ "$COMPFILE" = '.' ] && continue
1020     TEMPROOT_TYPE=`echo $TEMPROOT_TYPE | tr [:upper:] [:lower:]`
1021     INSTALLED_TYPE=`echo $INSTALLED_TYPE | tr [:upper:] [:lower:]`
1022
1023     echo "*** The installed file ${DESTDIR}${COMPFILE#.} has the type \"$INSTALLED_TYPE\""
1024     echo "    but the new version has the type \"$TEMPROOT_TYPE\""
1025     echo ''
1026     echo "    How would you like to handle this?"
1027     echo ''
1028     echo "    Use 'r' to remove ${DESTDIR}${COMPFILE#.}"
1029     case "$TEMPROOT_TYPE" in
1030     'symbolic link')
1031         TARGET=`readlink $COMPFILE`
1032         echo "    and create a link to $TARGET in its place" ;;
1033     *)  echo "    You will be able to install it as a \"$TEMPROOT_TYPE\"" ;;
1034     esac
1035     echo ''
1036     echo "    Use 'i' to ignore this"
1037     echo ''
1038     echo -n "    How to proceed? [i] "
1039     read ANSWER
1040     case "$ANSWER" in
1041     [rR])       case "${PRESERVE_FILES}" in
1042                 [Yy][Ee][Ss])
1043                 mv ${DESTDIR}${COMPFILE#.} ${PRESERVE_FILES_DIR}/ || exit 1 ;;
1044                 *) rm -rf ${DESTDIR}${COMPFILE#.} ;;
1045                 esac
1046                 case "$TEMPROOT_TYPE" in
1047                 'symbolic link') ln -sf $TARGET ${DESTDIR}${COMPFILE#.} ;;
1048                 esac ;;
1049     *)  echo ''
1050         echo "*** See the man page about adding ${COMPFILE#.} to the list of IGNORE_FILES"
1051         press_to_continue ;;
1052     esac
1053     echo ''
1054   fi
1055 done
1056
1057 for COMPFILE in `find . -type f | sort`; do
1058
1059   # First, check to see if the file exists in DESTDIR.  If not, the
1060   # diff_loop function knows how to handle it.
1061   #
1062   if [ ! -e "${DESTDIR}${COMPFILE#.}" ]; then
1063     case "${AUTO_RUN}" in
1064       '')
1065         diff_loop
1066         ;;
1067       *)
1068         case "${AUTO_INSTALL}" in
1069         '')
1070           # If this is an auto run, make it official
1071           echo "   *** ${COMPFILE} will remain for your consideration"
1072           ;;
1073         *)
1074           diff_loop
1075           ;;
1076         esac
1077         ;;
1078     esac # Auto run test
1079     continue
1080   fi
1081
1082   case "${STRICT}" in
1083   '' | [Nn][Oo])
1084     # Compare CVS $Id's first so if the file hasn't been modified
1085     # local changes will be ignored.
1086     # If the files have the same $Id, delete the one in temproot so the
1087     # user will have less to wade through if files are left to merge by hand.
1088     #
1089     CVSID1=`grep "[$]${CVS_ID_TAG}:" ${DESTDIR}${COMPFILE#.} 2>/dev/null`
1090     CVSID2=`grep "[$]${CVS_ID_TAG}:" ${COMPFILE} 2>/dev/null` || CVSID2=none
1091
1092     case "${CVSID2}" in
1093     "${CVSID1}")
1094       echo " *** Temp ${COMPFILE} and installed have the same CVS Id, deleting"
1095       rm "${COMPFILE}"
1096       ;;
1097     esac
1098     ;;
1099   esac
1100
1101   # If the file is still here either because the $Ids are different, the
1102   # file doesn't have an $Id, or we're using STRICT mode; look at the diff.
1103   #
1104   if [ -f "${COMPFILE}" ]; then
1105
1106     # Do an absolute diff first to see if the files are actually different.
1107     # If they're not different, delete the one in temproot.
1108     #
1109     if diff -q ${DIFF_OPTIONS} "${DESTDIR}${COMPFILE#.}" "${COMPFILE}" > \
1110       /dev/null 2>&1; then
1111       echo " *** Temp ${COMPFILE} and installed are the same, deleting"
1112       rm "${COMPFILE}"
1113     else
1114       # Ok, the files are different, so show the user where they differ.
1115       # Use user's choice of diff methods; and user's pager if they have one.
1116       # Use more if not.
1117       # Use unified diffs by default.  Context diffs give me a headache. :)
1118       #
1119       # If the user chose the -F option, test for that before proceeding
1120       #
1121       if [ -n "$FREEBSD_ID" ]; then
1122         if diff -q -I'[$]FreeBSD.*[$]' "${DESTDIR}${COMPFILE#.}" "${COMPFILE}" > \
1123             /dev/null 2>&1; then
1124           if mm_install "${COMPFILE}"; then
1125             echo "*** Updated revision control Id for ${DESTDIR}${COMPFILE#.}"
1126           else
1127             echo "*** Problem installing ${COMPFILE}, it will remain to merge by hand later"
1128           fi
1129           continue
1130         fi
1131       fi
1132       case "${AUTO_RUN}" in
1133       '')
1134         # prompt user to install/delete/merge changes
1135         diff_loop
1136         ;;
1137       *)
1138         # If this is an auto run, make it official
1139         echo "   *** ${COMPFILE} will remain for your consideration"
1140         ;;
1141       esac # Auto run test
1142     fi # Yes, the files are different
1143   fi # Yes, the file still remains to be checked
1144 done # This is for the for way up there at the beginning of the comparison
1145
1146 echo ''
1147 echo "*** Comparison complete"
1148
1149 if [ -s "${MTREENEW}" ]; then
1150   echo "*** Saving mtree database for future upgrades"
1151   test -e "${MTREEFILE}" && unlink ${MTREEFILE}
1152   mv ${MTREENEW} ${MTREEFILE}
1153 fi
1154
1155 echo ''
1156
1157 TEST_FOR_FILES=`find ${TEMPROOT} -type f -size +0 2>/dev/null`
1158 if [ -n "${TEST_FOR_FILES}" ]; then
1159   echo "*** Files that remain for you to merge by hand:"
1160   find "${TEMPROOT}" -type f -size +0 | sort
1161   echo ''
1162
1163   case "${AUTO_RUN}" in
1164   '')
1165     echo -n "Do you wish to delete what is left of ${TEMPROOT}? [no] "
1166     read DEL_TEMPROOT
1167     case "${DEL_TEMPROOT}" in
1168     [yY]*)
1169       delete_temproot
1170       ;;
1171     *)
1172       echo " *** ${TEMPROOT} will remain"
1173       ;;
1174     esac
1175     ;;
1176   *) ;;
1177   esac
1178 else
1179   echo "*** ${TEMPROOT} is empty, deleting"
1180   delete_temproot
1181 fi
1182
1183 case "${AUTO_INSTALLED_FILES}" in
1184 '') ;;
1185 *)
1186   case "${AUTO_RUN}" in
1187   '')
1188     (
1189       echo ''
1190       echo '*** You chose the automatic install option for files that did not'
1191       echo '    exist on your system.  The following were installed for you:'
1192       echo "${AUTO_INSTALLED_FILES}"
1193     ) | ${PAGER}
1194     ;;
1195   *)
1196     echo ''
1197     echo '*** You chose the automatic install option for files that did not'
1198     echo '    exist on your system.  The following were installed for you:'
1199     echo "${AUTO_INSTALLED_FILES}"
1200     ;;
1201   esac
1202   ;;
1203 esac
1204
1205 case "${AUTO_UPGRADED_FILES}" in
1206 '') ;;
1207 *)
1208   case "${AUTO_RUN}" in
1209   '')
1210     (
1211       echo ''
1212       echo '*** You chose the automatic upgrade option for files that you did'
1213       echo '    not alter on your system.  The following were upgraded for you:'
1214       echo "${AUTO_UPGRADED_FILES}"
1215     ) | ${PAGER}
1216     ;;
1217   *)
1218     echo ''
1219     echo '*** You chose the automatic upgrade option for files that you did'
1220     echo '    not alter on your system.  The following were upgraded for you:'
1221     echo "${AUTO_UPGRADED_FILES}"
1222     ;;
1223   esac
1224   ;;
1225 esac
1226
1227 run_it_now () {
1228   case "${AUTO_RUN}" in
1229   '')
1230     unset YES_OR_NO
1231     echo ''
1232     echo -n '    Would you like to run it now? y or n [n] '
1233     read YES_OR_NO
1234
1235     case "${YES_OR_NO}" in
1236     y)
1237       echo "    Running ${1}"
1238       echo ''
1239       eval "${1}"
1240       ;;
1241     ''|n)
1242       echo ''
1243       echo "       *** Cancelled"
1244       echo ''
1245       echo "    Make sure to run ${1} yourself"
1246       ;;
1247     *)
1248       echo ''
1249       echo "       *** Sorry, I do not understand your answer (${YES_OR_NO})"
1250       echo ''
1251       echo "    Make sure to run ${1} yourself"
1252     esac
1253     ;;
1254   *) ;;
1255   esac
1256 }
1257
1258 case "${NEED_NEWALIASES}" in
1259 '') ;;
1260 *)
1261   echo ''
1262   if [ -n "${DESTDIR}" ]; then
1263     echo "*** You installed a new aliases file into ${DESTDIR}/etc/mail, but"
1264     echo "    the newaliases command is limited to the directories configured"
1265     echo "    in sendmail.cf.  Make sure to create your aliases database by"
1266     echo "    hand when your sendmail configuration is done."
1267   else
1268     echo "*** You installed a new aliases file, so make sure that you run"
1269     echo "    '/usr/bin/newaliases' to rebuild your aliases database"
1270     run_it_now '/usr/bin/newaliases'
1271   fi
1272   ;;
1273 esac
1274
1275 case "${NEED_CAP_MKDB}" in
1276 '') ;;
1277 *)
1278   echo ''
1279   echo "*** You installed a login.conf file, so make sure that you run"
1280   echo "    '/usr/bin/cap_mkdb ${DESTDIR}/etc/login.conf'"
1281   echo "     to rebuild your login.conf database"
1282   run_it_now "/usr/bin/cap_mkdb ${DESTDIR}/etc/login.conf"
1283   ;;
1284 esac
1285
1286 case "${NEED_SERVICES_MKDB}" in
1287 '') ;;
1288 *)
1289   echo ''
1290   echo "*** You installed a services file, so make sure that you run"
1291   echo "    '/usr/sbin/services_mkdb -q -o ${DESTDIR}/var/db/services.db ${DESTDIR}/etc/services'"
1292   echo "     to rebuild your services database"
1293   run_it_now "/usr/sbin/services_mkdb -q -o ${DESTDIR}/var/db/services.db ${DESTDIR}/etc/services"
1294   ;;
1295 esac
1296
1297 case "${NEED_PWD_MKDB}" in
1298 '') ;;
1299 *)
1300   echo ''
1301   echo "*** You installed a new master.passwd file, so make sure that you run"
1302   if [ -n "${DESTDIR}" ]; then
1303     echo "    '/usr/sbin/pwd_mkdb -d ${DESTDIR}/etc -p ${DESTDIR}/etc/master.passwd'"
1304     echo "    to rebuild your password files"
1305     run_it_now "/usr/sbin/pwd_mkdb -d ${DESTDIR}/etc -p ${DESTDIR}/etc/master.passwd"
1306   else
1307     echo "    '/usr/sbin/pwd_mkdb -p /etc/master.passwd'"
1308     echo "     to rebuild your password files"
1309     run_it_now '/usr/sbin/pwd_mkdb -p /etc/master.passwd'
1310   fi
1311   ;;
1312 esac
1313
1314 echo ''
1315
1316 if [ -r "${MM_EXIT_SCRIPT}" ]; then
1317   . "${MM_EXIT_SCRIPT}"
1318 fi
1319
1320 case "${COMP_CONFS}" in
1321 '') ;;
1322 *)
1323   . ${DESTDIR}/etc/defaults/rc.conf
1324
1325   (echo ''
1326   echo "*** Comparing conf files: ${rc_conf_files}"
1327
1328   for CONF_FILE in ${rc_conf_files}; do
1329     if [ -r "${DESTDIR}${CONF_FILE}" ]; then
1330       echo ''
1331       echo "*** From ${DESTDIR}${CONF_FILE}"
1332       echo "*** From ${DESTDIR}/etc/defaults/rc.conf"
1333
1334       for RC_CONF_VAR in `grep -i ^[a-z] ${DESTDIR}${CONF_FILE} |
1335         cut -d '=' -f 1`; do
1336         echo ''
1337         grep -w ^${RC_CONF_VAR} ${DESTDIR}${CONF_FILE}
1338         grep -w ^${RC_CONF_VAR} ${DESTDIR}/etc/defaults/rc.conf ||
1339           echo ' * No default variable with this name'
1340       done
1341     fi
1342   done) | ${PAGER}
1343   echo ''
1344   ;;
1345 esac
1346
1347 case "${PRE_WORLD}" in
1348 '') ;;
1349 *)
1350   MAKE_CONF="${SOURCEDIR}/share/examples/etc/make.conf"
1351
1352   (echo ''
1353   echo '*** Comparing make variables'
1354   echo ''
1355   echo "*** From ${DESTDIR}/etc/make.conf"
1356   echo "*** From ${MAKE_CONF}"
1357
1358   for MAKE_VAR in `grep -i ^[a-z] ${DESTDIR}/etc/make.conf | cut -d '=' -f 1`; do
1359     echo ''
1360     grep -w ^${MAKE_VAR} ${DESTDIR}/etc/make.conf
1361     grep -w ^#${MAKE_VAR} ${MAKE_CONF} ||
1362       echo ' * No example variable with this name'
1363   done) | ${PAGER}
1364   ;;
1365 esac
1366
1367 if [ -n "${PRESERVE_FILES}" ]; then
1368   find -d $PRESERVE_FILES_DIR -type d -empty -delete 2>/dev/null
1369   rmdir $PRESERVE_FILES_DIR 2>/dev/null
1370 fi
1371
1372 exit 0