X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fceph-debugpack.in;fp=src%2Fceph%2Fsrc%2Fceph-debugpack.in;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=fc6179646b39cf4c5232f74123558b0c9791a36b;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/ceph-debugpack.in b/src/ceph/src/ceph-debugpack.in deleted file mode 100644 index fc61796..0000000 --- a/src/ceph/src/ceph-debugpack.in +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -# if we start up as ./init-ceph, assume everything else is in the -# current directory too. -if [ `dirname $0` = "." ] && [ $PWD != "/etc/init.d" ]; then - BINDIR=. - LIBEXECDIR=. - ETCDIR=. -else - BINDIR=@bindir@ - LIBEXECDIR=@libexecdir@/ceph - ETCDIR=@sysconfdir@/ceph -fi - -BINDBGDIR="/usr/lib/debug/usr/bin" - -usage_exit() { - echo "usage: $0 [-c ceph.conf] " - exit -} - -wait_pid_exit() { - pid=$1 - - for i in $(seq 10); do - [ -e /proc/$pid ] || return - sleep 1 - done - if [ -e /proc/$pid ]; then - echo Killing pid $pid - kill $pid - fi -} - -. $LIBEXECDIR/ceph_common.sh - -dest_tar='' -while [ $# -ge 1 ]; do -case $1 in - --conf | -c) - [ -z "$2" ] && usage_exit - shift - conf=$1 - ;; - *) - if [ -n "$dest_tar" ]; then - echo unrecognized option \'$1\' - usage_exit - fi - dest_tar=$1 - ;; -esac -shift -done - -[ "$dest_tar" = "" ] && usage_exit - -echo "$0: generating debugpack tarball..." - -if [ -e $dest_tar ]; then - echo "$0: dest $dest_tar already exists, aborting" - exit 1 -fi - -# get absolute path for dest_tar -bins="ceph-mon ceph-mds ceph-osd radosgw" -core_paths="/ $BINDIR $BINDBGDIR" -[ "$conf" = "" ] && conf=$ETCDIR/ceph.conf -log_path=`$CCONF -c $conf "log dir"` - -[ -z "$conf" ] && usage_exit - -# all configs -files='/etc/ceph' - -# binaries -for bin in bins; do - if [ -e "/usr/bin/$bin" ]; then - files="$files /usr/bin/$bin" - fi - if [ -e "/usr/lib/debug/usr/bin/$bin" ]; then - files="$files /usr/lib/debug/usr/bin/$bin" - fi -done - -# logs (the non-rotated ones) -for f in `find $path -maxdepth 1 -name 'core*'`; do - files="$files $f" -done - -# copy cores (if exist) -for path in $core_paths; do - if [ -d $path ]; then - for f in `find $path -maxdepth 1 -name 'core*'`; do - files="$files $f" - done - fi -done - -# cluster state -tmp_path=`mktemp -d /tmp/ceph-debugpack.XXXXXXXXXX` - -$BINDIR/ceph report > $tmp_path/ceph-report & -wait_pid_exit $! - -files="$files $tmp_path" - -# now create a tarball -tar cvfz $dest_tar $files -rm -rf $tmp_path - -echo "$0: created debugpack tarball at $dest_tar" -