Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
a2038ab0
Commit
a2038ab0
authored
Jul 08, 2017
by
Vladimir Berezhnoy
Browse files
fix syntax
parent
6445a767
Changes
1
Show whitespace changes
Inline
Side-by-side
dnsapi/dns_yandex.sh
View file @
a2038ab0
...
@@ -16,8 +16,8 @@ dns_yandex_add() {
...
@@ -16,8 +16,8 @@ dns_yandex_add() {
_PDD_credentials
_PDD_credentials
export
_H1
=
"PddToken:
$PDD_Token
"
export
_H1
=
"PddToken:
$PDD_Token
"
curDomain
=
"
$(
echo
"
${
fulldomain
}
"
|
awk
-F
.
'{printf("%s.%s\n",$(NF-1), $NF)}'
)
"
curDomain
=
"
$(
echo
"
${
fulldomain
}
"
|
awk
-F
.
'{printf("%s.%s\n",$(NF-1), $NF)}'
)
"
curSubdomain
=
"
$(
echo
"
${
fulldomain
}
"
|
sed
-e
'
s#$curDomain##
'
)
"
curSubdomain
=
"
$(
echo
"
${
fulldomain
}
"
|
sed
-e
"
s#
$curDomain
##
"
)
"
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
}
"
)
"
...
@@ -30,10 +30,10 @@ dns_yandex_rm() {
...
@@ -30,10 +30,10 @@ dns_yandex_rm() {
_debug
"Calling: dns_yandex_rm() '
${
fulldomain
}
'"
_debug
"Calling: dns_yandex_rm() '
${
fulldomain
}
'"
_PDD_credentials
_PDD_credentials
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
}
"
|
awk
-F
.
'{printf("%s.%s\n",$(NF-1), $NF)}'
)
"
curDomain
=
"
$(
echo
"
${
fulldomain
}
"
|
awk
-F
.
'{printf("%s.%s\n",$(NF-1), $NF)}'
)
"
curSubdomain
=
"
$(
echo
"
${
fulldomain
}
"
|
sed
-e
'
s#$curDomain##
'
)
"
curSubdomain
=
"
$(
echo
"
${
fulldomain
}
"
|
sed
-e
"
s#
$curDomain
##
"
)
"
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
}
"
)
"
...
@@ -57,8 +57,8 @@ pdd_get_record_id() {
...
@@ -57,8 +57,8 @@ pdd_get_record_id() {
curDomain
=
"
$(
echo
"
${
fulldomain
}
"
|awk
-F
.
'{printf("%s.%s\n",$(NF-1), $NF)}'
)
"
curDomain
=
"
$(
echo
"
${
fulldomain
}
"
|awk
-F
.
'{printf("%s.%s\n",$(NF-1), $NF)}'
)
"
curUri
=
"https://pddimp.yandex.ru/api2/admin/dns/list?domain=
${
curDomain
}
"
curUri
=
"https://pddimp.yandex.ru/api2/admin/dns/list?domain=
${
curDomain
}
"
curResult
=
"
$(
_get
"
${
curUri
}
"
)
"
curResult
=
"
$(
_get
"
${
curUri
}
"
)
"
echo
${
curResult
}
|
\
echo
"
${
curResult
}
"
\
python
-c
"
|
python
-c
"
import sys, json;
import sys, json;
rs=json.load(sys.stdin)[
\"
records
\"
]
rs=json.load(sys.stdin)[
\"
records
\"
]
for r in rs:
for r in rs:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment