]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Removes the CEPH_ARGS hack in /etc/default/cinder and cinder-volume.init script since...
authorThomas Goirand <thomas@goirand.fr>
Fri, 11 Oct 2013 15:01:50 +0000 (23:01 +0800)
committerThomas Goirand <thomas@goirand.fr>
Fri, 11 Oct 2013 15:01:50 +0000 (23:01 +0800)
Rewritten-From: 8009a20e325032e212ddacc2ba07ea9d2cb77561

xenial/debian/changelog
xenial/debian/cinder-volume.default [deleted file]
xenial/debian/cinder-volume.init

index 8fe2b9e7ab7c1b07545867abc44b99f8c4790036..9566db72d91a05ce64f3dbdb1c86407b0b394ec6 100644 (file)
@@ -1,3 +1,11 @@
+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).
diff --git a/xenial/debian/cinder-volume.default b/xenial/debian/cinder-volume.default
deleted file mode 100644 (file)
index a4ec899..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-# 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"
index a66378bfa564e7128b6c86d1c86a0aad0ef0cc63..d45c48cf9e3982843f034779862fb5d0f7ea24cd 100755 (executable)
@@ -29,10 +29,6 @@ DEFAULTS_FILE=/etc/default/cinder-common
 # 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}
 
@@ -55,15 +51,9 @@ do_start()
 {
        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()