Add CINDER_SECURE_DELETE flag.
Defaults to true which means no change in behavoir. Adds option to disable secure delete as in https://review.openstack.org/15477. Change-Id: I2b19ed4223460b550026ad4975080c0079c8b433
This commit is contained in:
parent
161e2807a9
commit
213c416878
@ -134,6 +134,10 @@ function configure_cinder() {
|
|||||||
iniset $CINDER_CONF DEFAULT rabbit_password $RABBIT_PASSWORD
|
iniset $CINDER_CONF DEFAULT rabbit_password $RABBIT_PASSWORD
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ "$CINDER_SECURE_DELETE" == "False" ]]; then
|
||||||
|
iniset $CINDER_CONF DEFAULT secure_delete False
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
|
if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
|
||||||
# Add color to logging output
|
# Add color to logging output
|
||||||
iniset $CINDER_CONF DEFAULT logging_context_format_string "%(asctime)s %(color)s%(levelname)s %(name)s [[01;36m%(request_id)s [00;36m%(user_id)s %(project_id)s%(color)s] [01;35m%(instance)s%(color)s%(message)s[00m"
|
iniset $CINDER_CONF DEFAULT logging_context_format_string "%(asctime)s %(color)s%(levelname)s %(name)s [[01;36m%(request_id)s [00;36m%(user_id)s %(project_id)s%(color)s] [01;35m%(instance)s%(color)s%(message)s[00m"
|
||||||
|
5
stack.sh
5
stack.sh
@ -356,6 +356,11 @@ RYU_OFP_PORT=${RYU_OFP_PORT:-6633}
|
|||||||
# Ryu Applications
|
# Ryu Applications
|
||||||
RYU_APPS=${RYU_APPS:-ryu.app.simple_isolation,ryu.app.rest}
|
RYU_APPS=${RYU_APPS:-ryu.app.simple_isolation,ryu.app.rest}
|
||||||
|
|
||||||
|
# Should cinder perform secure deletion of volumes?
|
||||||
|
# Defaults to true, can be set to False to avoid this bug when testing:
|
||||||
|
# https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1023755
|
||||||
|
CINDER_SECURE_DELETE=`trueorfalse True $CINDER_SECURE_DELETE`
|
||||||
|
|
||||||
# Name of the LVM volume group to use/create for iscsi volumes
|
# Name of the LVM volume group to use/create for iscsi volumes
|
||||||
VOLUME_GROUP=${VOLUME_GROUP:-stack-volumes}
|
VOLUME_GROUP=${VOLUME_GROUP:-stack-volumes}
|
||||||
VOLUME_NAME_PREFIX=${VOLUME_NAME_PREFIX:-volume-}
|
VOLUME_NAME_PREFIX=${VOLUME_NAME_PREFIX:-volume-}
|
||||||
|
Loading…
Reference in New Issue
Block a user