Merge "Use the right service name for tgt/tgtd in stop_cinder"

This commit is contained in:
Jenkins 2012-12-19 18:39:36 +00:00 committed by Gerrit Code Review
commit 701718a844

View File

@ -307,7 +307,11 @@ function stop_cinder() {
done
if is_service_enabled c-vol; then
stop_service tgt
if is_ubuntu; then
stop_service tgt
else
stop_service tgtd
fi
fi
}