diff options
Diffstat (limited to '')
-rwxr-xr-x | debian/samba-common.bug-script | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/samba-common.bug-script b/debian/samba-common.bug-script new file mode 100755 index 0000000..93c23f2 --- /dev/null +++ b/debian/samba-common.bug-script @@ -0,0 +1,24 @@ +#!/bin/bash -e + +cat <<EOF + +I can automatically include various information about your samba configuration +in your bug report. This information may help to diagnose your problem. + +EOF + +for config in /etc/samba/smb.conf ; do + if [ -f $config ]; then + yesno "May I include your $config configuration file? [Y/n] " yep + if [ "$REPLY" = "yep" ]; then + echo "* $config present, and attached" >&3 + echo "-- BEGIN ATTACHMENTS --" >&3 + echo "$config" >&3 + echo "-- END ATTACHMENTS --" >&3 + else + echo "* $config present, but not attached" >&3 + fi + else + echo "* $config not present" >&3 + fi +done |