summaryrefslogtreecommitdiffstats
path: root/debian/ceph-base.install (follow)
Commit message (Collapse)AuthorAgeFilesLines
* blk/kernel: add plugin system for devices with compression and move VDO ↵Martin Ohmacht2022-09-281-0/+1
| | | | | | | | | | | | support into plugin The current VDO support implementation is buried inside the common/blkdev.cc with a simple interface used by KernelDevice. It is not easily extendable and can not be easily used for other devices providing similar capabilities. This patch adds a plugin system that is based in its structure on the erasure code plugin system and moves the VDO support code into a VDO plugin. Signed-off-by: Martin Ohmacht <mohmacht@us.ibm.com>
* rpm, debian: move smartmontools and nvme-cli to ceph-baseYaarit Hatuka2021-08-251-0/+1
| | | | | | | | | | | | | | | We wish to be able to scrape SMART and NVMe metrics from OSD and MON nodes. For this we require / recommend smartmontools and nvme-cli dependencies for both the ceph-osd and ceph-mon packages. However, the sudoers file (which is required for invoking `smartctl` by user 'ceph') was installed only in the ceph-osd package. Since different packages cannot own the same file, and because we want to be able to scrape from every daemon, we move the dependencies and the sudoers installation to ceph-base. For generalization, we rename: sudoers.d/ceph-osd-smartctl -> sudoers.d/ceph-smartctl Fixes: https://tracker.ceph.com/issues/50657 Signed-off-by: Yaarit Hatuka <yaarit@redhat.com>
* cmake,deb,rpm: drop ceph-deploy manpageKefu Chai2021-06-241-1/+0
| | | | | | | | | ceph-deploy is not actively maintained anymore, and it was replaced by ceph-volume and other high-level tools. so there is no point to package its manpage anymore. Signed-off-by: Kefu Chai <kchai@redhat.com>
* debian: Use /usr/libexec for libexecdirNeal Gompa2020-06-081-1/+1
| | | | | | | | Debian has adopted FHS 3.0 with Debian Policy Standard version 4.4.0, and now defaults to /usr/libexec for libexecdir as well. This is present in Ubuntu 20.04 LTS, for example. Signed-off-by: Neal Gompa <ngompa13@gmail.com>
* add ceph-crash serviceDan Mick2018-08-091-0/+2
| | | | | | | | ceph-crash runs from systemd and watches /var/lib/ceph/crash for crashdumps, posting them to the mgrs using the mgr's crash plugin Signed-off-by: Dan Mick <dan.mick@redhat.com>
* debian: remove ceph_detect_init python files from baseAlfredo Deza2018-06-131-1/+0
| | | | Signed-off-by: Alfredo Deza <adeza@redhat.com>
* debian: remove ceph-detect-init referencesAlfredo Deza2018-06-131-2/+0
| | | | Signed-off-by: Alfredo Deza <adeza@redhat.com>
* build/ops: deb: move ceph-*-tool binaries out of ceph-test subpackageNathan Cutler2017-10-161-0/+2
| | | | | | | | | ceph-osdomap-tool into ceph-osd subpackage ceph-monstore-tool into ceph-mon subpackage ceph-kvstore-tool into the ceph-base subpackage Fixes: http://tracker.ceph.com/issues/21762 Signed-off-by: Nathan Cutler <ncutler@suse.com>
* debian: wrap-and-sort all filesJames Page2017-07-041-5/+5
| | | | | | | | | | | 'wrap-and-sort -a -t' debian folder to apply consistent ordering/formatting to all files. This makes synchronization of debian package changes between Ceph packages and Ubuntu packages easier to manage. Signed-off-by: James Page <james.page@ubuntu.com>
* build/ops: drop sample.fetch_configNathan Cutler2017-06-151-1/+0
| | | | | | | smithfarm: @liewegas Is src/fetch_config still needed? liewegas: i don't think so Signed-off-by: Nathan Cutler <ncutler@suse.com>
* build: move bash_completion.d/ceph from debian/ceph-base.install to ↵Leo Zhang2017-05-181-1/+0
| | | | | | | | debian/ceph-common.install when only ceph-common is installed, can also use ceph completion Signed-off-by: Leo Zhang <nguzcf@gmail.com>
* deb: Moved ceph-client-debug from ceph-base to ceph-test packageRicardo Dias2016-09-091-1/+0
| | | | Signed-off-by: Ricardo Dias <rdias@suse.com>
* debian: package etc/init.d/ceph in ceph-baseKefu Chai2016-06-291-0/+1
| | | | Signed-off-by: Kefu Chai <kchai@redhat.com>
* packaging: rados-classes libraries in ceph-baseNathan Cutler2016-02-291-0/+1
| | | | | | | | Drop duplicate rados-classes libraries from ceph-osd and align the RPM packaging with Debian by using a wildcard to package everything that autotools puts in the rados-classes directory. Signed-off-by: Nathan Cutler <ncutler@suse.com>
* debian/rpm: split mon/osd/mds server packagesAli Maredia2016-02-241-0/+22
Split up the "ceph" package into four new packages: 1. ceph-mon 2. ceph-osd 3. ceph-mds (already done on Debian) 4. ceph-base (files shared among multiple servers) and then: 5. Make "ceph" into a metapackage that depends on both -mon and -osd (and -mds, for RPMs). To describe the outcome of this change another way: For RPMs: - "ceph-{mon,osd,mds}" Require: ceph-base. - "ceph" will become a metapackage that Requires: ceph-{mon,osd,mds}. For DEBs: - "ceph-{mon,osd,mds}" will Depends: ceph-base. - "ceph" will become a metapackage that Depends: ceph-{mon,osd}. - "ceph" will continue to Recommends: ceph-mds New users should "yum install ceph-mon" or "yum install ceph-osd" (or "apt-get install ceph-mon", etc) in order to install the exact daemons that they need. http://tracker.ceph.com/issues/10587 Fixes: #10587 Signed-off-by: Ken Dreyer <kdreyer@redhat.com>