mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2025-12-24 03:52:10 +08:00
Show proxmox deploy scripts response only on debug
This commit is contained in:
@@ -115,6 +115,16 @@ HEREDOC
|
|||||||
_info "Push certificates to server"
|
_info "Push certificates to server"
|
||||||
export HTTPS_INSECURE=1
|
export HTTPS_INSECURE=1
|
||||||
export _H1="Authorization: PBSAPIToken=${_proxmoxbs_header_api_token}"
|
export _H1="Authorization: PBSAPIToken=${_proxmoxbs_header_api_token}"
|
||||||
_post "$_json_payload" "$_target_url" "" POST "application/json"
|
response=$(_post "$_json_payload" "$_target_url" "" POST "application/json")
|
||||||
|
_retval=$?
|
||||||
|
if [ "${_retval}" -eq 0 ]; then
|
||||||
|
_debug3 response "$response"
|
||||||
|
_info "Certificate successfully deployed"
|
||||||
|
return 0
|
||||||
|
else
|
||||||
|
_err "Certificate deployment failed"
|
||||||
|
_debug "Response" "$response"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -127,6 +127,16 @@ HEREDOC
|
|||||||
_info "Push certificates to server"
|
_info "Push certificates to server"
|
||||||
export HTTPS_INSECURE=1
|
export HTTPS_INSECURE=1
|
||||||
export _H1="Authorization: PVEAPIToken=${_proxmoxve_header_api_token}"
|
export _H1="Authorization: PVEAPIToken=${_proxmoxve_header_api_token}"
|
||||||
_post "$_json_payload" "$_target_url" "" POST "application/json"
|
response=$(_post "$_json_payload" "$_target_url" "" POST "application/json")
|
||||||
|
_retval=$?
|
||||||
|
if [ "${_retval}" -eq 0 ]; then
|
||||||
|
_debug3 response "$response"
|
||||||
|
_info "Certificate successfully deployed"
|
||||||
|
return 0
|
||||||
|
else
|
||||||
|
_err "Certificate deployment failed"
|
||||||
|
_debug "Response" "$response"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user