summaryrefslogtreecommitdiffstats
path: root/packaging/Debian/debian/panic-action
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-05-06 15:02:58 +0000
committerStefan Metzmacher <metze@samba.org>2004-05-06 15:02:58 +0000
commite256acce3bfc22534b5738f8438faf328fda6a8b (patch)
treedb96031437314f4d14db5a4f4e837c9f8c28642b /packaging/Debian/debian/panic-action
parent9c9d2fac0b8ccbb5292a7e8b90361da6ea9d2ece (diff)
downloadsamba-e256acce3bfc22534b5738f8438faf328fda6a8b.tar.gz
samba-e256acce3bfc22534b5738f8438faf328fda6a8b.tar.xz
samba-e256acce3bfc22534b5738f8438faf328fda6a8b.zip
r518: merge in the SAMBA_2_2 branch from cvs to brnaches/SAMBA_2_2
this is maybe not complete yet, please wait until I create the DAY_ZERRO tag metze
Diffstat (limited to 'packaging/Debian/debian/panic-action')
-rw-r--r--packaging/Debian/debian/panic-action48
1 files changed, 0 insertions, 48 deletions
diff --git a/packaging/Debian/debian/panic-action b/packaging/Debian/debian/panic-action
deleted file mode 100644
index 13f773c1ef8..00000000000
--- a/packaging/Debian/debian/panic-action
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-
-# Redirect all output to our mail command
-(
- # We must be given a pid to look at
- if [ -z "$1" ]; then
- echo "$0 called with no arguments."
- exit 1
- fi
-
- if [ ! -d "/proc/$1" ]; then
- echo "$0: No such process: $1"
- exit 1
- fi
-
- # Find out what binary we're debugging
- BINARYNAME=`readlink "/proc/$1/exe"`
-
- # Generic header for our email
- echo "The Samba 'panic action' script, $0,"
- echo "was called for pid $1 ($BINARYNAME)."
- echo
-
- if [ -z "$BINARYNAME" ]; then
- echo "This means there was a problem with the program, such as a segfault."
- echo "However, the executable could not be found for process $1."
- echo "It may have died unexpectedly, or you may not have permission to"
- echo "debug the process."
- exit 1
- fi
-
- # No debugger
- if [ ! -x /usr/bin/gdb ]; then
- echo "This means there was a problem with the program, such as a segfault."
- echo "However, gdb was not found on your system, so the error could not be"
- echo "debugged. Please install the gdb package so that debugging information is"
- echo "available the next time such a problem occurs."
- exit 1
- fi
-
- echo "Below is a backtrace for this process generated with gdb, which shows"
- echo "the state of the program at the time the error occured. You are"
- echo "encouraged to submit this information as a bug report to Debian. For"
- echo "information about the procedure for submitting bug reports , please see"
- echo "http://www.debian.org/Bugs/Reporting or the reportbug(1) manpage."
- echo
- gdb -x /etc/samba/gdbcommands -batch "$BINARYNAME" "$1"
-) | mail -s "Segfault in Samba" root