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:
parent
271e6026c7
commit
1adffac42b
@ -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
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user