23 lines
479 B
Bash
Executable file
23 lines
479 B
Bash
Executable file
#!/bin/sh
|
|
|
|
name=$(hostname)
|
|
|
|
CEPH_PATH=/var/lib/ceph
|
|
MGR_PATH=$CEPH_PATH/mgr/ceph-${name}
|
|
|
|
if [ -e "$MGR_PATH" ]; then
|
|
echo "$MGR_PATH exists - aborting"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p "$MGR_PATH"
|
|
chown ceph:ceph "$MGR_PATH"
|
|
touch "$MGR_PATH/sysvinit"
|
|
|
|
ceph auth get-or-create mgr.${name} \
|
|
mon 'allow profile mgr' \
|
|
osd 'allow *' \
|
|
mds 'allow *' > "$MGR_PATH/keyring"
|
|
|
|
# Starting with monit - same on every os
|
|
/opt/ungleich-tools/monit-ceph-create-start mgr.${name}
|