Merge "set dhcp_agent_manager for ovs plugin"
diff --git a/lib/cinder b/lib/cinder
index 49db410..c8291a2 100644
--- a/lib/cinder
+++ b/lib/cinder
@@ -361,6 +361,7 @@
     screen_it c-api "cd $CINDER_DIR && $CINDER_BIN_DIR/cinder-api --config-file $CINDER_CONF"
     screen_it c-vol "cd $CINDER_DIR && $CINDER_BIN_DIR/cinder-volume --config-file $CINDER_CONF"
     screen_it c-sch "cd $CINDER_DIR && $CINDER_BIN_DIR/cinder-scheduler --config-file $CINDER_CONF"
+    screen_it c-bak "cd $CINDER_DIR && $CINDER_BIN_DIR/cinder-backup --config-file $CINDER_CONF"
 
     # Start proxies if enabled
     if is_service_enabled c-api && is_service_enabled tls-proxy; then
@@ -371,7 +372,7 @@
 # stop_cinder() - Stop running processes
 function stop_cinder() {
     # Kill the cinder screen windows
-    for serv in c-api c-sch c-vol; do
+    for serv in c-api c-bak c-sch c-vol; do
         screen -S $SCREEN_NAME -p $serv -X kill
     done