ungleich-tools/ceph/ceph-mgr-create-start

24 lines
479 B
Text
Raw Normal View History

2018-02-15 22:59:55 +00:00
#!/bin/sh
name=$(hostname)
CEPH_PATH=/var/lib/ceph
MGR_PATH=$CEPH_PATH/mgr/ceph-${name}
2018-02-15 22:59:55 +00:00
if [ -e "$MGR_PATH" ]; then
echo "$MGR_PATH exists - aborting"
exit 1
fi
mkdir -p "$MGR_PATH"
2018-02-15 22:59:55 +00:00
chown ceph:ceph "$MGR_PATH"
touch "$MGR_PATH/sysvinit"
ceph auth get-or-create mgr.${name} \
2018-02-15 22:59:55 +00:00
mon 'allow profile mgr' \
osd 'allow *' \
mds 'allow *' > "$MGR_PATH/keyring"
2018-02-15 23:01:13 +00:00
# Starting with monit - same on every os
/opt/ungleich-tools/monit-ceph-create-start mgr.${name}