+cinder (2013.2~rc1-3) UNRELEASED; urgency=low
+
+ * Kills the CEPH_ARGS hack in /etc/default/cinder and cinder-volume.init
+ since that's not needed anymore (upstream code manages this now in the
+ configuration file directly).
+
+ -- Thomas Goirand <zigo@debian.org> Fri, 11 Oct 2013 22:54:46 +0800
+
cinder (2013.2~rc1-2) experimental; urgency=low
* Updates the templates and translations to really (Closes: #708658).
+++ /dev/null
-# This controls the values to export for Ceph
-# If it's not defined, then nothing will happen.
-# If it is, then export CEPH_ARGS will use the content
-# of the below variable.
-CEPH_ARGS_EXPORT="--id nova"
# Exit if the package is not installed
[ -x $DAEMON ] || exit 0
-if [ -r /etc/default/cinder-volume ] ; then
- . /etc/default/cinder-volume
-fi
-
mkdir -p ${LOCK_DIR}
chown ${CINDER_USER} ${LOCK_DIR}
{
start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON --test > /dev/null \
|| return 1
- if [ -n "${CEPH_ARGS_EXPORT}" ] ; then
- CEPH_ARGS="${CEPH_ARGS_EXPORT}" start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON -- \
- $DAEMON_ARGS \
- || return 2
- else
- start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON -- \
- $DAEMON_ARGS \
- || return 2
- fi
+ start-stop-daemon --start --quiet --background --chuid ${CINDER_USER}:cinder --make-pidfile --pidfile $PIDFILE --startas $DAEMON -- \
+ $DAEMON_ARGS \
+ || return 2
}
do_stop()