| Server IP : 85.214.239.14 / Your IP : 216.73.216.27 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/share/bug/samba-common/ |
Upload File : |
#!/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 /var/lib/samba/dhcp.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