mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2025-05-05 23:17:41 +00:00
Remove || return 1 from the two public functions
This commit is contained in:
parent
baee5e6466
commit
061aa17f7b
@ -18,14 +18,14 @@ dns_ispconfig_add() {
|
|||||||
HTTPS_INSECURE=1
|
HTTPS_INSECURE=1
|
||||||
fulldomain="${1}"
|
fulldomain="${1}"
|
||||||
txtvalue="${2}"
|
txtvalue="${2}"
|
||||||
_ISPC_credentials && _ISPC_login && _ISPC_getZoneInfo && _ISPC_addTxt || return 1
|
_ISPC_credentials && _ISPC_login && _ISPC_getZoneInfo && _ISPC_addTxt
|
||||||
}
|
}
|
||||||
|
|
||||||
#Usage: dns_myapi_rm _acme-challenge.www.domain.com
|
#Usage: dns_myapi_rm _acme-challenge.www.domain.com
|
||||||
dns_ispconfig_rm() {
|
dns_ispconfig_rm() {
|
||||||
HTTPS_INSECURE=1
|
HTTPS_INSECURE=1
|
||||||
fulldomain="${1}"
|
fulldomain="${1}"
|
||||||
_ISPC_login && _ISPC_rmTxt || return 1
|
_ISPC_login && _ISPC_rmTxt
|
||||||
}
|
}
|
||||||
|
|
||||||
#################### Private functions bellow ##################################
|
#################### Private functions bellow ##################################
|
||||||
|
Loading…
x
Reference in New Issue
Block a user