diff --git a/devstack/libs/collectd b/devstack/libs/collectd index b70acad..b995e5c 100644 --- a/devstack/libs/collectd +++ b/devstack/libs/collectd @@ -175,9 +175,9 @@ function adapt_collectd_conf { sudo sed -i 's|File.*$|File "'$COLLECTD_LOG_FILE'"|g' $COLLECTD_CONF_DIR/01-logfile.conf # Create a backup for all of the .conf files - sudo mkdir -p "$COLLECTD_CONF_DIR/backup" + sudo mkdir -p $COLLECTD_CONF_DIR/backup sudo cp $COLLECTD_CONF_DIR/*.conf $COLLECTD_CONF_DIR/backup/ - + sudo rename 's|\.conf$|.conf.bak|' $COLLECTD_CONF_DIR/backup/*.conf } function config_custom_units { diff --git a/releasenotes/notes/bug-1684579-eea80d719dd3cdc4.yaml b/releasenotes/notes/bug-1684579-eea80d719dd3cdc4.yaml new file mode 100644 index 0000000..9c8f134 --- /dev/null +++ b/releasenotes/notes/bug-1684579-eea80d719dd3cdc4.yaml @@ -0,0 +1,7 @@ +--- + fixes: + - | + Fixes 'bug 1684579 https://bugs.launchpad.net/collectd-ceilometer-plugin/+bug/1684579'. + Changed the extensions for the back-up .conf files. This prevents back-up + .conf file being read if the original .conf is deleted. Thus preventing + those plugins from running when they are not configured properly.