Do not override DAEMON_ARGS through /etc/default files
After adding support we faced broken configuration for openstack
services (see related bug). OS services' init.d files "sources"
/etc/defaults/{service_name} files which could override DAEMON_ARGS.
Change-Id: Ieac622425a971e422648853ade21b9e93230c38e
Related-bug: PROD-17968
diff --git a/cinder/files/default b/cinder/files/default
index 99f34b9..68b3ce6 100644
--- a/cinder/files/default
+++ b/cinder/files/default
@@ -1,4 +1,4 @@
# Generated by Salt.
{% if values.logging.log_appender %}
-DAEMON_ARGS="--log-config-append=/etc/cinder/logging/logging-{{ service_name }}.conf"
+DAEMON_ARGS="${DAEMON_ARGS} --log-config-append=/etc/cinder/logging/logging-{{ service_name }}.conf"
{% endif %}