]>
git.saurik.com Git - apt.git/blob - debian/apt.bug-script
4 if [ -z "$YESNO" ]; then
9 I can automatically include various information about your apt configuration in
10 your bug report. This information may help to diagnose your problem.
14 yesno
"May I include your apt configuration (/etc/apt/apt.conf et al)? [Y/n] " yep
16 if [ "$REPLY" = "yep" ]; then
17 echo -e "\n-- apt-config dump --\n" >&3
18 apt
-config dump
>&3 2>&1
21 for config
in /etc
/apt
/preferences
/etc
/apt
/preferences.d
/* /etc
/apt
/sources.list
/etc
/apt
/sources.list.d
/* ; do
22 if [ -f $config ]; then
23 yesno
"May I include your $config configuration file? [Y/n] " yep
24 if [ "$REPLY" = "yep" ]; then
25 echo -e "\n-- $config --\n" >&3
28 echo -e "\n-- ($config present, but not submitted) --\n" >&3
31 echo -e "\n-- (no $config present) --\n" >&3