diff options
| author | Michael Klishin <michael@clojurewerkz.org> | 2016-02-02 15:58:00 +0300 |
|---|---|---|
| committer | Michael Klishin <michael@clojurewerkz.org> | 2016-02-02 15:58:00 +0300 |
| commit | b36840581b73b943b8b01484c31e268dc13c58ac (patch) | |
| tree | 2ef2170f3219ff37273e5123b3d668045e087c23 | |
| parent | 04484fd92be9f0076d096094870317fdb649eeae (diff) | |
| parent | 57cd8f8db9346abc58270ed4c0ca445181db9dd1 (diff) | |
| download | rabbitmq-server-git-b36840581b73b943b8b01484c31e268dc13c58ac.tar.gz | |
Merge branch 'stable'
| -rwxr-xr-x | scripts/rabbitmq-server-ha.ocf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rabbitmq-server-ha.ocf b/scripts/rabbitmq-server-ha.ocf index aa077aa0df..1bfc7f013d 100755 --- a/scripts/rabbitmq-server-ha.ocf +++ b/scripts/rabbitmq-server-ha.ocf @@ -1936,7 +1936,7 @@ action_notify() { ocf_log info "${LH} post-start end." if [ -s "${OCF_RESKEY_definitions_dump_file}" ] ; then ocf_log info "File ${OCF_RESKEY_definitions_dump_file} exists" - ocf_run curl -X POST -u $OCF_RESKEY_admin_user:$OCF_RESKEY_admin_password $OCF_RESKEY_host_ip:15672/api/definitions --header "Content-Type:application/json" -d @$OCF_RESKEY_definitions_dump_file + ocf_run curl --silent --show-error --request POST --user $OCF_RESKEY_admin_user:$OCF_RESKEY_admin_password $OCF_RESKEY_host_ip:15672/api/definitions --header "Content-Type:application/json" --data @$OCF_RESKEY_definitions_dump_file rc=$? if [ $rc -eq $OCF_SUCCESS ] ; then ocf_log info "RMQ definitions have imported succesfully." |
