1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-08-24 17:49:28 +03:00

Merge pull request #1678 from hydro-b/fix_ceph_tm_mad

Add CEPH_KEY to snap_revert driver operation
This commit is contained in:
Jaime Melis
2018-01-24 16:54:47 +01:00
committed by GitHub

View File

@ -107,6 +107,10 @@ if [ -n "$CEPH_USER" ]; then
RBD="$RBD --id ${CEPH_USER}"
fi
if [ -n "$CEPH_KEY" ]; then
RBD="$RBD --keyfile ${CEPH_KEY}"
fi
if [ -n "$CEPH_CONF" ]; then
RBD="$RBD --conf ${CEPH_CONF}"
fi