Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
261cc448
Commit
261cc448
authored
Jul 08, 2018
by
Michael
Browse files
fixed shfmt related errors in dns_euserv.sh and modified README.md
parent
616b0b6b
Changes
1
Hide whitespace changes
Inline
Side-by-side
dnsapi/dns_euserv.sh
View file @
261cc448
...
@@ -43,10 +43,10 @@ dns_euserv_add() {
...
@@ -43,10 +43,10 @@ dns_euserv_add() {
return
1
return
1
fi
fi
_debug
"_sub_domain"
"
$_sub_domain
"
_debug
"_sub_domain"
"
$_sub_domain
"
_debug
"_domain"
"
$_domain
"
_debug
"_domain"
"
$_domain
"
_info
"Adding record"
_info
"Adding record"
if
!
_euserv_add_record
"
$_domain
"
"
$_sub_domain
"
"
$txtvalue
"
;
then
if
!
_euserv_add_record
"
$_domain
"
"
$_sub_domain
"
"
$txtvalue
"
;
then
return
1
return
1
fi
fi
}
}
...
@@ -80,7 +80,7 @@ dns_euserv_rm() {
...
@@ -80,7 +80,7 @@ dns_euserv_rm() {
_debug
"_domain"
"
$_domain
"
_debug
"_domain"
"
$_domain
"
_debug
"Getting txt records"
_debug
"Getting txt records"
xml_content
=
$(
printf
'<?xml version="1.0" encoding="UTF-8"?>
xml_content
=
$(
printf
'<?xml version="1.0" encoding="UTF-8"?>
<methodCall>
<methodCall>
<methodName>domain.dns_get_active_records</methodName>
<methodName>domain.dns_get_active_records</methodName>
...
@@ -111,7 +111,7 @@ dns_euserv_rm() {
...
@@ -111,7 +111,7 @@ dns_euserv_rm() {
</param>
</param>
</params>
</params>
</methodCall>'
"
$EUSERV_Username
"
"
$EUSERV_Password
"
"
$_euserv_domain_id
"
)
</methodCall>'
"
$EUSERV_Username
"
"
$EUSERV_Password
"
"
$_euserv_domain_id
"
)
export
_H1
=
"Content-Type: text/xml"
export
_H1
=
"Content-Type: text/xml"
response
=
"
$(
_post
"
$xml_content
"
"
$EUSERV_Api
"
""
"POST"
)
"
response
=
"
$(
_post
"
$xml_content
"
"
$EUSERV_Api
"
""
"POST"
)
"
...
@@ -126,9 +126,9 @@ dns_euserv_rm() {
...
@@ -126,9 +126,9 @@ dns_euserv_rm() {
_info
"Do not need to delete record"
_info
"Do not need to delete record"
else
else
# find XML block where txtvalue is in. The record_id is allways prior this line!
# find XML block where txtvalue is in. The record_id is allways prior this line!
_endLine
=
$(
printf
'%s'
"
$response
"
|
grep
-n
'>dns_record_content<.*>'
"
$txtvalue
"
'<'
|
cut
-d
':'
-f
1
)
_endLine
=
$(
printf
'%s'
"
$response
"
|
grep
-n
'>dns_record_content<.*>'
"
$txtvalue
"
'<'
|
cut
-d
':'
-f
1
)
# record_id is the last <name> Tag with a number before the row _endLine, identified by </name><value><struct>
# record_id is the last <name> Tag with a number before the row _endLine, identified by </name><value><struct>
_record_id
=
$(
printf
'%s'
"
$response
"
|
sed
-n
'1,'
"
$_endLine
"
'p'
|
grep
'</name><value><struct>'
|
tail
-n
1 |
sed
's/.*<name>\([0-9]*\)<\/name>.*/\1/'
)
_record_id
=
$(
printf
'%s'
"
$response
"
|
sed
-n
'1,'
"
$_endLine
"
'p'
|
grep
'</name><value><struct>'
|
tail
-n
1 |
sed
's/.*<name>\([0-9]*\)<\/name>.*/\1/'
)
_info
"Deleting record"
_info
"Deleting record"
_euserv_delete_record
"
$_record_id
"
_euserv_delete_record
"
$_record_id
"
fi
fi
...
@@ -168,7 +168,7 @@ _get_root() {
...
@@ -168,7 +168,7 @@ _get_root() {
if
!
_euserv_get_domain_id
"
$_domain
"
;
then
if
!
_euserv_get_domain_id
"
$_domain
"
;
then
_err
"invalid domain"
_err
"invalid domain"
return
1
return
1
fi
fi
return
0
return
0
fi
fi
p
=
$i
p
=
$i
...
@@ -343,7 +343,7 @@ _euserv_add_record() {
...
@@ -343,7 +343,7 @@ _euserv_add_record() {
</param>
</param>
</params>
</params>
</methodCall>'
"
$EUSERV_Username
"
"
$EUSERV_Password
"
"
$_euserv_domain_id
"
"
$sub_domain
"
"
$txtval
"
)
</methodCall>'
"
$EUSERV_Username
"
"
$EUSERV_Password
"
"
$_euserv_domain_id
"
"
$sub_domain
"
"
$txtval
"
)
export
_H1
=
"Content-Type: text/xml"
export
_H1
=
"Content-Type: text/xml"
response
=
"
$(
_post
"
$xml_content
"
"
$EUSERV_Api
"
""
"POST"
)
"
response
=
"
$(
_post
"
$xml_content
"
"
$EUSERV_Api
"
""
"POST"
)
"
...
...
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