1
0
Fork 0

Adding debian version 2.25.15.

Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
Daniel Baumann 2025-06-21 11:04:08 +02:00
parent b543f2e88d
commit 545b7b0cdb
Signed by: daniel.baumann
GPG key ID: BCC918A2ABD66424
22 changed files with 11589 additions and 0 deletions

21
debian/bug-script vendored Normal file
View file

@ -0,0 +1,21 @@
#!/bin/sh
printf "\n--- /etc/devscripts.conf ---\n" >&3
if [ -f /etc/devscripts.conf ]; then
grep -E '^[^#]' /etc/devscripts.conf | \
grep -E -v "^\s*BTS_SMTP_AUTH_" | \
grep -E -v "^\s*SALSA.*TOKEN" >&3 || echo "Empty." >&3
else
echo "Not present" >&3
fi
printf "\n--- ~/.devscripts ---\n" >&3
if [ -f ~/.devscripts ]; then
grep -E '^[^#]' ~/.devscripts | \
grep -E -v "^\s*BTS_SMTP_AUTH_" | \
grep -E -v "^\s*SALSA.*TOKEN" >&3 || echo "Empty." >&3
else
echo "Not present" >&3
fi