HA minor update: fix bad pcs invocation
When a HA resource is in failed stated, the minor update should normally try to restart it but the associated pcs invocation is currently invalid, so the resource never gets a chance to be restarted. Use the right pcs call to fix this minor update use case. Change-Id: Iaf85807d067898bbab6d76ab40bc070e845a8b38 Closes-Bug: #1931500
This commit is contained in:
parent
b868a5361d
commit
1662600e6e
@ -82,7 +82,7 @@ else
|
||||
# already running elsewhere.
|
||||
echo "$(date -u): ${BUNDLE_NAME} is currently not running on '${HOST}'," \
|
||||
"cleaning up its state to restart it if necessary"
|
||||
/sbin/pcs resource cleanup $BUNDLE_NAME --node "${HOST}"
|
||||
/sbin/pcs resource cleanup $BUNDLE_NAME node="${HOST}"
|
||||
fi
|
||||
|
||||
# Wait until the resource is in the expected target state
|
||||
|
Loading…
Reference in New Issue
Block a user