
This commit removes any trailing spaces at the end of the lines that was still present after recent cleanups. Change-Id: I4e6b2e7106a380cc34571ff35b5e727c476996a8
20 lines
651 B
Plaintext
20 lines
651 B
Plaintext
# Test: Stop Galera and Rabbitmq, stop every systemd resource, Start every systemd resource
|
|
|
|
echo "$(date) * Step 1: disable core services"
|
|
play_on_resources "disable" "$OVERCLOUD_CORE_RESOURCES"
|
|
|
|
echo "$(date) - List of cluster's failed actions:"
|
|
check_failed_actions
|
|
|
|
echo "$(date) * Step 2: disable all the systemd resources"
|
|
play_on_resources "disable" "$OVERCLOUD_SYSTEMD_RESOURCES"
|
|
|
|
echo "$(date) - List of cluster's failed actions:"
|
|
check_failed_actions
|
|
|
|
echo "$(date) * Step 3: enable all the systemd resources"
|
|
play_on_resources "enable" "$OVERCLOUD_SYSTEMD_RESOURCES"
|
|
|
|
echo "$(date) - List of cluster's failed actions:"
|
|
check_failed_actions
|