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
c7b8f223
Commit
c7b8f223
authored
Nov 11, 2016
by
neilpang
Browse files
fix for solaris tr
parent
a0636d5a
Changes
2
Hide whitespace changes
Inline
Side-by-side
acme.sh
View file @
c7b8f223
...
@@ -548,7 +548,7 @@ _createkey() {
...
@@ -548,7 +548,7 @@ _createkey() {
_is_idn
()
{
_is_idn
()
{
_is_idn_d
=
"
$1
"
_is_idn_d
=
"
$1
"
_debug2 _is_idn_d
"
$_is_idn_d
"
_debug2 _is_idn_d
"
$_is_idn_d
"
_idn_temp
=
$(
printf
"%s"
"
$_is_idn_d
"
|
tr
-d
'0-9'
|
tr
-d
'a-z'
|
tr
-d
'A-Z'
|
tr
-d
'.,-'
)
_idn_temp
=
$(
printf
"%s"
"
$_is_idn_d
"
|
tr
-d
'
[
0-9
]
'
|
tr
-d
'
[
a-z
]
'
|
tr
-d
'
[
A-Z
]
'
|
tr
-d
'.,-'
)
_debug2 _idn_temp
"
$_idn_temp
"
_debug2 _idn_temp
"
$_idn_temp
"
[
"
$_idn_temp
"
]
[
"
$_idn_temp
"
]
}
}
...
...
dnsapi/dns_lexicon.sh
View file @
c7b8f223
...
@@ -29,7 +29,7 @@ dns_lexicon_add() {
...
@@ -29,7 +29,7 @@ dns_lexicon_add() {
_savedomainconf PROVIDER
"
$PROVIDER
"
_savedomainconf PROVIDER
"
$PROVIDER
"
export
PROVIDER
export
PROVIDER
Lx_name
=
$(
echo
LEXICON_
${
PROVIDER
}
_USERNAME |
tr
'a-z'
'A-Z'
)
Lx_name
=
$(
echo
LEXICON_
${
PROVIDER
}
_USERNAME |
tr
'
[
a-z
]
'
'
[
A-Z
]
'
)
eval
Lx_name_v
=
"
\$
$Lx_name
"
eval
Lx_name_v
=
"
\$
$Lx_name
"
_debug
"
$Lx_name
"
"
$Lx_name_v
"
_debug
"
$Lx_name
"
"
$Lx_name_v
"
if
[
"
$Lx_name_v
"
]
;
then
if
[
"
$Lx_name_v
"
]
;
then
...
@@ -37,7 +37,7 @@ dns_lexicon_add() {
...
@@ -37,7 +37,7 @@ dns_lexicon_add() {
export
"
$Lx_name
"
export
"
$Lx_name
"
fi
fi
Lx_token
=
$(
echo
LEXICON_
${
PROVIDER
}
_TOKEN |
tr
'a-z'
'A-Z'
)
Lx_token
=
$(
echo
LEXICON_
${
PROVIDER
}
_TOKEN |
tr
'
[
a-z
]
'
'
[
A-Z
]
'
)
eval
Lx_token_v
=
"
\$
$Lx_token
"
eval
Lx_token_v
=
"
\$
$Lx_token
"
_debug
"
$Lx_token
"
"
$Lx_token_v
"
_debug
"
$Lx_token
"
"
$Lx_token_v
"
if
[
"
$Lx_token_v
"
]
;
then
if
[
"
$Lx_token_v
"
]
;
then
...
@@ -45,7 +45,7 @@ dns_lexicon_add() {
...
@@ -45,7 +45,7 @@ dns_lexicon_add() {
export
"
$Lx_token
"
export
"
$Lx_token
"
fi
fi
Lx_password
=
$(
echo
LEXICON_
${
PROVIDER
}
_PASSWORD |
tr
'a-z'
'A-Z'
)
Lx_password
=
$(
echo
LEXICON_
${
PROVIDER
}
_PASSWORD |
tr
'
[
a-z
]
'
'
[
A-Z
]
'
)
eval
Lx_password_v
=
"
\$
$Lx_password
"
eval
Lx_password_v
=
"
\$
$Lx_password
"
_debug
"
$Lx_password
"
"
$Lx_password_v
"
_debug
"
$Lx_password
"
"
$Lx_password_v
"
if
[
"
$Lx_password_v
"
]
;
then
if
[
"
$Lx_password_v
"
]
;
then
...
@@ -53,7 +53,7 @@ dns_lexicon_add() {
...
@@ -53,7 +53,7 @@ dns_lexicon_add() {
export
"
$Lx_password
"
export
"
$Lx_password
"
fi
fi
Lx_domaintoken
=
$(
echo
LEXICON_
${
PROVIDER
}
_DOMAINTOKEN |
tr
'a-z'
'A-Z'
)
Lx_domaintoken
=
$(
echo
LEXICON_
${
PROVIDER
}
_DOMAINTOKEN |
tr
'
[
a-z
]
'
'
[
A-Z
]
'
)
eval
Lx_domaintoken_v
=
"
\$
$Lx_domaintoken
"
eval
Lx_domaintoken_v
=
"
\$
$Lx_domaintoken
"
_debug
"
$Lx_domaintoken
"
"
$Lx_domaintoken_v
"
_debug
"
$Lx_domaintoken
"
"
$Lx_domaintoken_v
"
if
[
"
$Lx_domaintoken_v
"
]
;
then
if
[
"
$Lx_domaintoken_v
"
]
;
then
...
...
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