Commit 09ed4219 authored by David Kerr's avatar David Kerr
Browse files

Merge remote-tracking branch 'upstream/master' into FreeDNS

parents 87f5ec5b f2a6dc4d
...@@ -1820,14 +1820,18 @@ _starttlsserver() { ...@@ -1820,14 +1820,18 @@ _starttlsserver() {
_readlink() { _readlink() {
_rf="$1" _rf="$1"
if ! readlink -f "$_rf" 2>/dev/null; then if ! readlink -f "$_rf" 2>/dev/null; then
if _startswith "$_rf" "\./$PROJECT_ENTRY"; then if _startswith "$_rf" "/"; then
printf -- "%s" "$(pwd)/$PROJECT_ENTRY" echo "$_rf"
return 0 return 0
fi fi
readlink "$_rf" echo "$(pwd)/$_rf" | _conapath
fi fi
} }
_conapath() {
sed "s#/\./#/#g"
}
__initHome() { __initHome() {
if [ -z "$_SCRIPT_HOME" ]; then if [ -z "$_SCRIPT_HOME" ]; then
if _exists readlink && _exists dirname; then if _exists readlink && _exists dirname; then
...@@ -4666,7 +4670,7 @@ _process() { ...@@ -4666,7 +4670,7 @@ _process() {
HTTPS_INSECURE="1" HTTPS_INSECURE="1"
;; ;;
--ca-bundle) --ca-bundle)
_ca_bundle="$(readlink -f "$2")" _ca_bundle="$(_readlink -f "$2")"
CA_BUNDLE="$_ca_bundle" CA_BUNDLE="$_ca_bundle"
shift shift
;; ;;
......
#Using deploy api
...@@ -67,7 +67,7 @@ dns_lua_add() { ...@@ -67,7 +67,7 @@ dns_lua_add() {
_debug "record_id" "$record_id" _debug "record_id" "$record_id"
_LUA_rest PUT "zones/$_domain_id/records/$record_id" "{\"id\":$record_id,\"type\":\"TXT\",\"name\":\"$fulldomain.\",\"content\":\"$txtvalue\",\"zone_id\":$_domain_id,\"ttl\":120}" _LUA_rest PUT "zones/$_domain_id/records/$record_id" "{\"id\":$record_id,\"type\":\"TXT\",\"name\":\"$fulldomain.\",\"content\":\"$txtvalue\",\"zone_id\":$_domain_id,\"ttl\":120}"
if [ "$?" = "0" ] && _contains "$response" "updated_at" ; then if [ "$?" = "0" ] && _contains "$response" "updated_at"; then
_info "Updated!" _info "Updated!"
#todo: check if the record takes effect #todo: check if the record takes effect
return 0 return 0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment