Adding debian version 2.25.15.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
b543f2e88d
commit
545b7b0cdb
22 changed files with 11589 additions and 0 deletions
21
debian/bug-script
vendored
Normal file
21
debian/bug-script
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue