diff options
author | Qiaowei Ren <qiaowei.ren@intel.com> | 2018-03-01 14:38:11 +0800 |
---|---|---|
committer | Qiaowei Ren <qiaowei.ren@intel.com> | 2018-03-01 14:38:11 +0800 |
commit | 7da45d65be36d36b880cc55c5036e96c24b53f00 (patch) | |
tree | d4f944eb4f8f8de50a9a7584ffa408dc3a3185b2 /src/ceph/debian/ceph-mgr.postinst | |
parent | 691462d09d0987b47e112d6ee8740375df3c51b2 (diff) |
remove ceph code
This patch removes initial ceph code, due to license issue.
Change-Id: I092d44f601cdf34aed92300fe13214925563081c
Signed-off-by: Qiaowei Ren <qiaowei.ren@intel.com>
Diffstat (limited to 'src/ceph/debian/ceph-mgr.postinst')
-rw-r--r-- | src/ceph/debian/ceph-mgr.postinst | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/ceph/debian/ceph-mgr.postinst b/src/ceph/debian/ceph-mgr.postinst deleted file mode 100644 index 6d38ccf..0000000 --- a/src/ceph/debian/ceph-mgr.postinst +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh -# vim: set noet ts=8: -# postinst script for ceph-mgr -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# -# postinst configure <most-recently-configured-version> -# old-postinst abort-upgrade <new-version> -# conflictor's-postinst abort-remove in-favour <package> <new-version> -# postinst abort-remove -# deconfigured's-postinst abort-deconfigure in-favour <failed-install-package> <version> [<removing conflicting-package> <version>] -# - -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -[ -f "/etc/default/ceph" ] && . /etc/default/ceph -[ -z "$SERVER_USER" ] && SERVER_USER=ceph -[ -z "$SERVER_GROUP" ] && SERVER_GROUP=ceph - -case "$1" in - configure) - [ -x /sbin/start ] && start ceph-mgr-all || : - - if ! dpkg-statoverride --list /var/lib/ceph/mgr >/dev/null - then - chown $SERVER_USER:$SERVER_GROUP /var/lib/ceph/mgr - fi - ;; - abort-upgrade|abort-remove|abort-deconfigure) - : - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - |