1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#!/bin/sh
echo
echo "Some preliminary notes on cruft:"
echo
echo " * This is a pre release version! Be careful, and take its results"
echo " with a grain of salt."
echo
echo " * cruft does not make any assumptions about the things you may have"
echo " in places like /usr/local, /var/tmp, /tmp, or any local mount-"
echo " points. cruft uses explanation programs from /etc/cruft/explain"
echo " to determine which files are meant to be on the system. To cover"
echo " all of /usr/local, you could do something like:"
echo " computer:~# cat >/etc/cruft/explain/usr_local"
echo " #!/bin/sh"
echo " find /usr/local"
echo " ^D"
echo " computer:~# chmod 755 /etc/cruft/explain/usr_local"
echo
echo " * If you have any suggestions on how to improve cruft, or if you"
echo " make a /usr/lib/cruft/filters/* file for another package, please"
echo " mail me the results for inclusion in a future release."
echo
echo "Thanks, aj -- Anthony Towns <ajt@debian.org>"
echo
echo "Please press enter to continue..."
read foo
|