fix shellcheck warnings.

This commit is contained in:
neilpang 2016-11-11 21:22:48 +08:00
parent e3698edd19
commit c4a375b3a5
1 changed files with 9 additions and 9 deletions

18
acme.sh
View File

@ -3364,7 +3364,7 @@ revoke() {
_isEcc="$2" _isEcc="$2"
_initpath $Le_Domain "$_isEcc" _initpath "$Le_Domain" "$_isEcc"
if [ ! -f "$DOMAIN_CONF" ]; then if [ ! -f "$DOMAIN_CONF" ]; then
_err "$Le_Domain is not a issued domain, skip." _err "$Le_Domain is not a issued domain, skip."
return 1 return 1
@ -3387,10 +3387,10 @@ revoke() {
if [ -f "$CERT_KEY_PATH" ]; then if [ -f "$CERT_KEY_PATH" ]; then
_info "Try domain key first." _info "Try domain key first."
if _send_signed_request $uri "$data" "" "$CERT_KEY_PATH"; then if _send_signed_request "$uri" "$data" "" "$CERT_KEY_PATH"; then
if [ -z "$response" ]; then if [ -z "$response" ]; then
_info "Revoke success." _info "Revoke success."
rm -f $CERT_PATH rm -f "$CERT_PATH"
return 0 return 0
else else
_err "Revoke error by domain key." _err "Revoke error by domain key."
@ -3403,10 +3403,10 @@ revoke() {
_info "Try account key." _info "Try account key."
if _send_signed_request $uri "$data" "" "$ACCOUNT_KEY_PATH"; then if _send_signed_request "$uri" "$data" "" "$ACCOUNT_KEY_PATH"; then
if [ -z "$response" ]; then if [ -z "$response" ]; then
_info "Revoke success." _info "Revoke success."
rm -f $CERT_PATH rm -f "$CERT_PATH"
return 0 return 0
else else
_err "Revoke error." _err "Revoke error."
@ -3450,11 +3450,11 @@ _deactivate() {
fi fi
_vtype="$(printf "%s\n" "$entry" | _egrep_o '"type": *"[^"]*"' | cut -d : -f 2 | tr -d '"')" _vtype="$(printf "%s\n" "$entry" | _egrep_o '"type": *"[^"]*"' | cut -d : -f 2 | tr -d '"')"
_debug _vtype $_vtype _debug _vtype "$_vtype"
_info "Found $_vtype" _info "Found $_vtype"
uri="$(printf "%s\n" "$entry" | _egrep_o '"uri":"[^"]*' | cut -d : -f 2,3 | tr -d '"')" uri="$(printf "%s\n" "$entry" | _egrep_o '"uri":"[^"]*' | cut -d : -f 2,3 | tr -d '"')"
_debug uri $uri _debug uri "$uri"
if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; then if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; then
_info "Skip $_vtype" _info "Skip $_vtype"
@ -3493,7 +3493,7 @@ deactivate() {
if [ -z "$_d_dm" ] || [ "$_d_dm" = "$NO_VALUE" ]; then if [ -z "$_d_dm" ] || [ "$_d_dm" = "$NO_VALUE" ]; then
continue continue
fi fi
if ! _deactivate "$_d_dm" $_d_type; then if ! _deactivate "$_d_dm" "$_d_type"; then
return 1 return 1
fi fi
done done
@ -3562,7 +3562,7 @@ _initconf() {
#USER_AGENT=\"$USER_AGENT\" #USER_AGENT=\"$USER_AGENT\"
#USER_PATH="" #USER_PATH=
#dns api #dns api
####################### #######################