ungleich-tools/ceph-create-initial-keyring
Nico Schottelius d2fdb82730 Rename
2018-02-15 23:11:29 +01:00

13 lines
294 B
Bash
Executable file

#!/bin/sh
# Creates the initial keys
if [ $# -ne 1 ]; then
echo "$0 initial-key-file"
exit 1
fi
fname=$1
ceph-authtool --create-keyring "$fname" --gen-key -n mon.
ceph-authtool "$fname" --gen-key -n client.admin --set-uid=0 --cap mon 'allow *' --cap osd 'allow *' --cap mds 'allow'