summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorSage Weil <sage@inktank.com>2012-06-11 16:25:42 -0700
committerSage Weil <sage@inktank.com>2012-06-12 10:10:58 -0700
commitc31b4e3100f59237990162fdc2ded5a9b101edac (patch)
treed6764d5d1cf10f6ebeca9737512ccc7ec22ffa7d /debian
parentd64600dfaefeafe6e673fea4f3786ded6bbce2fb (diff)
downloadceph-c31b4e3100f59237990162fdc2ded5a9b101edac.tar.gz
remove ceph-kdump-copy
Moved to its own repo. Signed-off-by: Sage Weil <sage@inktank.com>
Diffstat (limited to 'debian')
-rw-r--r--debian/ceph-kdump-copy.default33
-rw-r--r--debian/ceph-kdump-copy.init69
-rw-r--r--debian/ceph-kdump-copy.install1
-rw-r--r--debian/control13
4 files changed, 0 insertions, 116 deletions
diff --git a/debian/ceph-kdump-copy.default b/debian/ceph-kdump-copy.default
deleted file mode 100644
index e62dd31e650..00000000000
--- a/debian/ceph-kdump-copy.default
+++ /dev/null
@@ -1,33 +0,0 @@
-# ceph-kdump-copy configuration
-# ---------------------------------------------------------------------------
-
-# ---------------------------------------------------------------------------
-# Remote host information:
-#
-# These first two MUST be specified
-# KDUMP_HOST - The remote host to which kdumps will be copied.
-# KDUMP_HOST_USER - The ssh user on KDUMP_HOST that has write
-# permission in KDUMP_HOST_COREDIR.
-KDUMP_HOST="YOU_MUST_SPECIFY_THIS"
-KDUMP_HOST_USER="YOU_MUST_SPECIFY_THIS_TOO"
-
-# KDUMP_HOST_COREDIR - Full path to the directory on KDUMP_HOST that
-# will contain copied kdumps. If not set, "/var/crash/remote" is
-# the default.
-# KDUMP_HOST_COREDIR="/var/crash/remote"
-
-# KDUMP_HOST_MY_ID - Name for "me", used as the directory name
-# under KDUMP_HOST_COREDIR under which all kdumps from this
-# host are placed. Each kdump is identified by a date stamp.
-# If not set, "$(hostname)" is the default.
-# KDUMP_HOST_MY_ID="$(hostname)"
-
-# ---------------------------------------------------------------------------
-# Local host information:
-#
-# The local directory in which dumps are saved. If not set, "/var/crash"
-# is the default.
-# KDUMP_COREDIR="/var/crash"
-
-# ---------------------------------------------------------------------------
-# Architecture specific Overrides:
diff --git a/debian/ceph-kdump-copy.init b/debian/ceph-kdump-copy.init
deleted file mode 100644
index 617d9589021..00000000000
--- a/debian/ceph-kdump-copy.init
+++ /dev/null
@@ -1,69 +0,0 @@
-#! /bin/sh
-### BEGIN INIT INFO
-# Provides: ceph-kdump-copy
-# Required-Start: $remote_fs $network $named
-# Required-Stop: $remote_fs $network $named
-# Default-Start: 2
-# Default-Stop: 6
-# Short-Description: Copies kdump crash files to remote server
-# Description: This file is used to move crash files generated
-# by Ubuntu apport via the kdump init script to a
-# remote host.
-### END INIT INFO
-
-# Author: Alex Elder <elder@dreamhost.com>
-
-# To install and activate this init script:
-# update-rc.d ceph-kdump-copy start 02 2 .
-# To deactivate and uninstall this init script:
-# update-rc.d -f ceph-kdump-copy remove
-
-# PATH should only include /usr/* if it runs after the mountnfs.sh script
-PATH="/sbin:/usr/sbin:/bin:/usr/bin"
-DESC="Copies kdump crash files to remote server"
-NAME="ceph-kdump-copy"
-SCRIPTNAME="/etc/init.d/${NAME}"
-CONFIGFILE="/etc/default/${NAME}"
-
-# Exit if the copy command is not installed
-[ -x "/usr/bin/ceph-kdump-copy" ] || exit 0
-
-# Read configuration variable file if it is present
-[ -r "${CONFIGFILE}" ] && . "${CONFIGFILE}"
-
-[ -z "${KDUMP_HOST}" ] &&
- err "please specify KDUMP_HOST in '${CONFIGFILE}'"
-[ -z "${KDUMP_HOST_USER}" ] &&
- err "please specify KDUMP_HOST_USER in '${CONFIGFILE}'"
-export KDUMP_HOST KDUMP_HOST_USER
-
-# Load the VERBOSE setting and other rcS variables
-. /lib/init/vars.sh
-
-# Define LSB log_* functions.
-# Depend on lsb-base (>= 3.2-14) to ensure that this file is present
-# and status_of_proc is working.
-. /lib/lsb/init-functions
-
-case "$1" in
- start)
- [ "$VERBOSE" != no ] && log_action_begin_msg "Copying kdump files"
- /usr/bin/ceph-kdump-copy
- if [ "$?" -eq 0 ]; then
- [ "$VERBOSE" != no ] && log_end_msg 0
- else
- [ "$VERBOSE" != no ] && log_end_msg 1
- fi
- ;;
- stop) # No-op
- ;;
- status|reload|force-reload|restart)
- echo "Error: argument '$1' not supported" >&2
- echo "Usage: $SCRIPTNAME {start|stop}" >&2
- exit 3
- ;;
- *)
- echo "Usage: $SCRIPTNAME {start|stop}" >&2
- exit 3
- ;;
-esac
diff --git a/debian/ceph-kdump-copy.install b/debian/ceph-kdump-copy.install
deleted file mode 100644
index 1b77eec02b2..00000000000
--- a/debian/ceph-kdump-copy.install
+++ /dev/null
@@ -1 +0,0 @@
-usr/bin/ceph-kdump-copy
diff --git a/debian/control b/debian/control
index 1e6d892f246..023e13459da 100644
--- a/debian/control
+++ b/debian/control
@@ -280,16 +280,3 @@ Description: Python libraries for the Ceph distributed filesystem
This package contains Python libraries for interacting with Ceph's
RADOS object storage, and RBD (RADOS block device).
-Package: ceph-kdump-copy
-Architecture: amd64 armel armhf i386 ia64 mipsel
-Section: devel
-Priority: extra
-Depends: ${misc:Depends}, linux-crashdump
-Description: Shell script to repackage linux crashdump files generated by
- Ubuntu apport, then copy them to a remote system to facilitate
- offline analysis. Also includes an init script and associated
- configuration file to allow this to happen automatically at boot
- time.
- .
- This package contains an init script and supporting shell script to
- copy crashdump files to a remote server.