mirror of
https://github.com/ceph/ceph
synced 2025-01-31 15:32:38 +00:00
makefile, todo
This commit is contained in:
parent
528dd9b0ce
commit
268bb2c136
@ -52,8 +52,7 @@ bin_PROGRAMS = \
|
||||
sbin_PROGRAMS = \
|
||||
mount.ceph
|
||||
|
||||
bin_SCRIPTS = crun cephd ceph_stop ceph_common.sh ceph_init
|
||||
|
||||
bin_SCRIPTS = crun ceph_init
|
||||
|
||||
testmsgr_SOURCES = testmsgr.cc msg/SimpleMessenger.cc
|
||||
testmsgr_LDADD = libcommon.a
|
||||
@ -167,7 +166,14 @@ noinst_LIBRARIES += libcrush_so.a #libcephclient_so.a
|
||||
|
||||
# extra bits
|
||||
EXTRA_DIST = dstart.sh dstop.sh mkcephfs.sh montest.sh restart.sh verify-mds-journal.sh vstart.sh \
|
||||
crun cephd ceph_stop ceph_common.sh ceph_init
|
||||
crun ceph_common.sh ceph_init ceph-daemons
|
||||
|
||||
install-data-local:
|
||||
mkdir -p $(DESTDIR)$(libdir)/ceph
|
||||
$(install_sh_SCRIPT) -m 0755 ceph_common.sh $(DESTDIR)$(libdir)/ceph/ceph_common.sh
|
||||
mkdir -p $(DESTDIR)$(sysconfdir)/init.d
|
||||
$(install_sh_SCRIPT) -m 0755 ceph-daemons $(DESTDIR)$(sysconfdir)/init.d/ceph-daemons
|
||||
$(install_sh_SCRIPT) -m 0755 ceph-daemons $(DESTDIR)$(sysconfdir)/init.d/ceph-daemons
|
||||
|
||||
# cleaning
|
||||
clean-local:
|
||||
|
1
src/TODO
1
src/TODO
@ -89,7 +89,6 @@ userspace client
|
||||
- fix readdir vs fragment race by keeping a separate frag pos, and ignoring dentries below it
|
||||
|
||||
mds
|
||||
- already completed replies should wait for journal to flush, if necessary
|
||||
- linkage vs cdentry replicas and remote rename....
|
||||
- move root inode into stray dir
|
||||
- make recovery work with early replies
|
||||
|
@ -1,11 +1,19 @@
|
||||
;
|
||||
; Sample ceph startup.conf file.
|
||||
;
|
||||
; NOTE that this file ONLY includes options relating to starting
|
||||
; and stopping ceph daemons. For runtime options, see ceph.conf.
|
||||
;
|
||||
|
||||
; NOTE: This file ONLY includes options relating to starting and
|
||||
; stopping ceph daemons. For runtime options, see ceph.conf.
|
||||
|
||||
; If a 'host' is defined for a daemon, the start/stop script will
|
||||
; verify that it matches the hostname (or else ignore it). If it is
|
||||
; not defined, it is assumed that the daemon is intended to start on
|
||||
; the current host (e.g., in a setup with a startup.conf on each
|
||||
; node).
|
||||
|
||||
|
||||
; global
|
||||
[global]
|
||||
conf file = ceph.conf
|
||||
|
||||
; monitor
|
||||
@ -15,20 +23,24 @@
|
||||
[mon0]
|
||||
host = alpha
|
||||
mon path = /data/mon0
|
||||
mon addr = 192.168.0.10:6789
|
||||
|
||||
[mon1]
|
||||
host = beta
|
||||
mon path = /data/mon1
|
||||
mon addr = 192.168.0.11:6789
|
||||
|
||||
[mon2]
|
||||
host = gamma
|
||||
mon path = /data/mon2
|
||||
mon addr = 192.168.0.12:6789
|
||||
|
||||
; mds
|
||||
[mds]
|
||||
pid file = /var/run/ceph/mds$mds.pid
|
||||
|
||||
[mds0]
|
||||
host = alpha
|
||||
|
||||
|
||||
; osd
|
||||
|
Loading…
Reference in New Issue
Block a user