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
de25232a
Unverified
Commit
de25232a
authored
Feb 09, 2020
by
Brian Hartvigsen
Browse files
Allow creating new certificates when certificate is not found
parent
95769de4
Changes
1
Hide whitespace changes
Inline
Side-by-side
deploy/synology_dsm.sh
View file @
de25232a
...
@@ -39,6 +39,7 @@ synology_dsm_deploy() {
...
@@ -39,6 +39,7 @@ synology_dsm_deploy() {
# Get Username and Password, but don't save until we successfully authenticate
# Get Username and Password, but don't save until we successfully authenticate
SYNO_Username
=
"
${
SYNO_Username
:-
$(
_getdeployconf SYNO_Username
)
}
"
SYNO_Username
=
"
${
SYNO_Username
:-
$(
_getdeployconf SYNO_Username
)
}
"
SYNO_Password
=
"
${
SYNO_Password
:-
$(
_getdeployconf SYNO_Password
)
}
"
SYNO_Password
=
"
${
SYNO_Password
:-
$(
_getdeployconf SYNO_Password
)
}
"
SYNO_Create
=
"
${
SYNO_Create
:-
$(
_getdeployconf SYNO_Create
)
}
"
if
[
-z
"
$SYNO_Username
"
]
||
[
-z
"
$SYNO_Password
"
]
;
then
if
[
-z
"
$SYNO_Username
"
]
||
[
-z
"
$SYNO_Password
"
]
;
then
SYNO_Username
=
""
SYNO_Username
=
""
SYNO_Password
=
""
SYNO_Password
=
""
...
@@ -108,8 +109,8 @@ synology_dsm_deploy() {
...
@@ -108,8 +109,8 @@ synology_dsm_deploy() {
id
=
$(
echo
"
$response
"
|
sed
-n
"s/.*
\"
desc
\"
:
\"
$SYNO_Certificate
\"
,
\"
id
\"
:
\"\(
[^
\"
]*
\)
.*/
\1
/p"
)
id
=
$(
echo
"
$response
"
|
sed
-n
"s/.*
\"
desc
\"
:
\"
$SYNO_Certificate
\"
,
\"
id
\"
:
\"\(
[^
\"
]*
\)
.*/
\1
/p"
)
_debug2
id
"
$id
"
_debug2
id
"
$id
"
if
[
-z
"
$id
"
]
;
then
if
[
-z
"
$id
"
]
&&
[
-z
"
$SYNO_Create
"
]
;
then
_err
"Unable to find certificate:
$SYNO_Certificate
"
_err
"Unable to find certificate:
$SYNO_Certificate
and
\$
SYNO_Create is not set
"
return
1
return
1
fi
fi
...
...
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