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
1ce06c7c
Commit
1ce06c7c
authored
Jan 09, 2017
by
neil
Committed by
GitHub
Jan 09, 2017
Browse files
Merge pull request #521 from bittorf/master
dnsapi/dns_lexicon.sh: shellcheck: fix 4 occurences of SC2021
parents
0924d11b
800f02ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
.travis.yml
View file @
1ce06c7c
...
@@ -41,7 +41,7 @@ script:
...
@@ -41,7 +41,7 @@ script:
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ~/shfmt -l -w -i 2 . ; fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ~/shfmt -l -w -i 2 . ; fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then git diff --exit-code && echo "shfmt OK" ; fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then git diff --exit-code && echo "shfmt OK" ; fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -V ; fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -V ; fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -e
SC2021,
SC2126,SC2034 **/*.sh && echo "shellcheck OK" ; fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -e SC2126,SC2034 **/*.sh && echo "shellcheck OK" ; fi
-
cd ..
-
cd ..
-
git clone https://github.com/Neilpang/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest
-
git clone https://github.com/Neilpang/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$NGROK_TOKEN" ]]; then sudo NGROK_TOKEN="$NGROK_TOKEN" ./letest.sh ; fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$NGROK_TOKEN" ]]; then sudo NGROK_TOKEN="$NGROK_TOKEN" ./letest.sh ; fi
...
...
dnsapi/dns_lexicon.sh
View file @
1ce06c7c
...
@@ -30,7 +30,9 @@ dns_lexicon_add() {
...
@@ -30,7 +30,9 @@ dns_lexicon_add() {
_savedomainconf PROVIDER
"
$PROVIDER
"
_savedomainconf PROVIDER
"
$PROVIDER
"
export
PROVIDER
export
PROVIDER
Lx_name
=
$(
echo
LEXICON_
"
${
PROVIDER
}
"
_USERNAME |
tr
'[a-z]'
'[A-Z]'
)
# e.g. busybox-ash does not know [:upper:]
# shellcheck disable=SC2018,SC2019
Lx_name
=
$(
echo
LEXICON_
"
${
PROVIDER
}
"
_USERNAME |
tr
'a-z'
'A-Z'
)
Lx_name_v
=
$(
eval echo
\$
"
$Lx_name
"
)
Lx_name_v
=
$(
eval echo
\$
"
$Lx_name
"
)
_debug
"
$Lx_name
"
"
$Lx_name_v
"
_debug
"
$Lx_name
"
"
$Lx_name_v
"
if
[
"
$Lx_name_v
"
]
;
then
if
[
"
$Lx_name_v
"
]
;
then
...
@@ -38,7 +40,8 @@ dns_lexicon_add() {
...
@@ -38,7 +40,8 @@ dns_lexicon_add() {
eval export
"
$Lx_name
"
eval export
"
$Lx_name
"
fi
fi
Lx_token
=
$(
echo
LEXICON_
"
${
PROVIDER
}
"
_TOKEN |
tr
'[a-z]'
'[A-Z]'
)
# shellcheck disable=SC2018,SC2019
Lx_token
=
$(
echo
LEXICON_
"
${
PROVIDER
}
"
_TOKEN |
tr
'a-z'
'A-Z'
)
Lx_token_v
=
$(
eval echo
\$
"
$Lx_token
"
)
Lx_token_v
=
$(
eval echo
\$
"
$Lx_token
"
)
_debug
"
$Lx_token
"
"
$Lx_token_v
"
_debug
"
$Lx_token
"
"
$Lx_token_v
"
if
[
"
$Lx_token_v
"
]
;
then
if
[
"
$Lx_token_v
"
]
;
then
...
@@ -46,7 +49,8 @@ dns_lexicon_add() {
...
@@ -46,7 +49,8 @@ dns_lexicon_add() {
eval export
"
$Lx_token
"
eval export
"
$Lx_token
"
fi
fi
Lx_password
=
$(
echo
LEXICON_
"
${
PROVIDER
}
"
_PASSWORD |
tr
'[a-z]'
'[A-Z]'
)
# shellcheck disable=SC2018,SC2019
Lx_password
=
$(
echo
LEXICON_
"
${
PROVIDER
}
"
_PASSWORD |
tr
'a-z'
'A-Z'
)
Lx_password_v
=
$(
eval echo
\$
"
$Lx_password
"
)
Lx_password_v
=
$(
eval echo
\$
"
$Lx_password
"
)
_debug
"
$Lx_password
"
"
$Lx_password_v
"
_debug
"
$Lx_password
"
"
$Lx_password_v
"
if
[
"
$Lx_password_v
"
]
;
then
if
[
"
$Lx_password_v
"
]
;
then
...
@@ -54,7 +58,8 @@ dns_lexicon_add() {
...
@@ -54,7 +58,8 @@ dns_lexicon_add() {
eval export
"
$Lx_password
"
eval export
"
$Lx_password
"
fi
fi
Lx_domaintoken
=
$(
echo
LEXICON_
"
${
PROVIDER
}
"
_DOMAINTOKEN |
tr
'[a-z]'
'[A-Z]'
)
# shellcheck disable=SC2018,SC2019
Lx_domaintoken
=
$(
echo
LEXICON_
"
${
PROVIDER
}
"
_DOMAINTOKEN |
tr
'a-z'
'A-Z'
)
Lx_domaintoken_v
=
$(
eval echo
\$
"
$Lx_domaintoken
"
)
Lx_domaintoken_v
=
$(
eval echo
\$
"
$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