Change the default for deleting stale files from yes (which violates

the general principle that mm should do nothing by default) to no.

PR:		bin/85449
Submitted by:	Kevin Oberman <oberman@es.net>
This commit is contained in:
Doug Barton 2005-12-21 08:59:22 +00:00
parent 271e6026c7
commit 1adffac42b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=153604

View File

@ -809,17 +809,17 @@ if [ -z "${PRE_WORLD}" -a -z "${RERUN}" ]; then
case "${AUTO_RUN}" in
'')
echo ''
echo -n ' *** Delete them now? [y] '
echo -n ' *** Delete them now? [n] '
read DELETE_STALE_RC_FILES
case "${DELETE_STALE_RC_FILES}" in
[nN])
echo ' *** Files will not be deleted'
;;
*)
[yY])
echo ' *** Deleting ... '
rm ${STALE_RC_FILES}
echo ' done.'
;;
*)
echo ' *** Files will not be deleted'
;;
esac
sleep 2
;;