shfmt fixes

This commit is contained in:
Vladimir Berezhnoy 2017-07-09 13:21:55 +03:00
parent 256cb90f3c
commit 9ec54ef89b

View File

@ -16,8 +16,8 @@ dns_yandex_add() {
_PDD_credentials || exit 1 _PDD_credentials || exit 1
export _H1="PddToken: $PDD_Token" export _H1="PddToken: $PDD_Token"
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev )" curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev )" curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
curData="domain=${curDomain}&type=TXT&subdomain=${curSubdomain}&ttl=360&content=${txtvalue}" curData="domain=${curDomain}&type=TXT&subdomain=${curSubdomain}&ttl=360&content=${txtvalue}"
curUri="https://pddimp.yandex.ru/api2/admin/dns/add" curUri="https://pddimp.yandex.ru/api2/admin/dns/add"
curResult="$(_post "${curData}" "${curUri}")" curResult="$(_post "${curData}" "${curUri}")"
@ -32,8 +32,8 @@ dns_yandex_rm() {
export _H1="PddToken: $PDD_Token" export _H1="PddToken: $PDD_Token"
record_id=$(pdd_get_record_id "${fulldomain}") record_id=$(pdd_get_record_id "${fulldomain}")
curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev )" curDomain="$(echo "${fulldomain}" | rev | cut -d . -f 1-2 | rev)"
curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev )" curSubdomain="$(echo "${fulldomain}" | rev | cut -d . -f 3- | rev)"
curUri="https://pddimp.yandex.ru/api2/admin/dns/del" curUri="https://pddimp.yandex.ru/api2/admin/dns/del"
curData="domain=${curDomain}&record_id=${record_id}" curData="domain=${curDomain}&record_id=${record_id}"
curResult="$(_post "${curData}" "${curUri}")" curResult="$(_post "${curData}" "${curUri}")"
@ -67,4 +67,3 @@ for r in rs:
exit exit
" "
} }