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
201673ca
Unverified
Commit
201673ca
authored
Apr 11, 2022
by
quthla
Committed by
GitHub
Apr 11, 2022
Browse files
Store Mailcow deploy parameters
parent
29e23ac9
Changes
1
Show whitespace changes
Inline
Side-by-side
deploy/mailcow.sh
View file @
201673ca
...
@@ -20,18 +20,26 @@ mailcow_deploy() {
...
@@ -20,18 +20,26 @@ mailcow_deploy() {
_debug _cca
"
$_cca
"
_debug _cca
"
$_cca
"
_debug _cfullchain
"
$_cfullchain
"
_debug _cfullchain
"
$_cfullchain
"
_mailcow_path
=
"
${
DEPLOY_MAILCOW_PATH
}
"
_getdeployconf DEPLOY_MAILCOW_PATH
_getdeployconf DEPLOY_MAILCOW_RELOAD
if
[
-z
"
$_mailcow_path
"
]
;
then
_debug DEPLOY_MAILCOW_PATH
"
$DEPLOY_MAILCOW_PATH
"
_debug DEPLOY_MAILCOW_RELOAD
"
$DEPLOY_MAILCOW_RELOAD
"
if
[
-z
"
$DEPLOY_MAILCOW_PATH
"
]
;
then
_err
"Mailcow path is not found, please define DEPLOY_MAILCOW_PATH."
_err
"Mailcow path is not found, please define DEPLOY_MAILCOW_PATH."
return
1
return
1
fi
fi
_savedeployconf DEPLOY_MAILCOW_PATH
"
$DEPLOY_MAILCOW_PATH
"
[
-n
"
$DEPLOY_MAILCOW_RELOAD
"
]
&&
_savedeployconf DEPLOY_MAILCOW_RELOAD
"
$DEPLOY_MAILCOW_RELOAD
"
#Tests if _ssl_path is the mailcow root directory.
#Tests if _ssl_path is the mailcow root directory.
if
[
-f
"
$
{
_mailcow_path
}
/generate_config.sh"
]
;
then
if
[
-f
"
$
DEPLOY_MAILCOW_PATH
/generate_config.sh"
]
;
then
_ssl_path
=
"
$
{
_mailcow_path
}
/data/assets/ssl/"
_ssl_path
=
"
$
DEPLOY_MAILCOW_PATH
/data/assets/ssl/"
else
else
_ssl_path
=
"
$
{
_mailcow_path
}
"
_ssl_path
=
"
$
DEPLOY_MAILCOW_PATH
"
fi
fi
if
[
!
-d
"
$_ssl_path
"
]
;
then
if
[
!
-d
"
$_ssl_path
"
]
;
then
...
@@ -40,10 +48,7 @@ mailcow_deploy() {
...
@@ -40,10 +48,7 @@ mailcow_deploy() {
fi
fi
# ECC or RSA
# ECC or RSA
if
[
-z
"
${
Le_Keylength
}
"
]
;
then
if
_isEccKey
"
$Le_Keylength
"
;
then
Le_Keylength
=
""
fi
if
_isEccKey
"
${
Le_Keylength
}
"
;
then
_info
"ECC key type detected"
_info
"ECC key type detected"
_cert_name_prefix
=
"ecdsa-"
_cert_name_prefix
=
"ecdsa-"
else
else
...
@@ -63,7 +68,7 @@ mailcow_deploy() {
...
@@ -63,7 +68,7 @@ mailcow_deploy() {
return
1
return
1
fi
fi
DEFAULT_MAILCOW_RELOAD
=
"docker restart
$(
docker ps
-
qaf
name
=
postfix-mailcow
)
; docker restart
$(
docker ps
-qaf
name
=
nginx-mailcow
)
; docker restart
$(
docker ps
-qaf
name
=
dovecot-mailcow
)
"
DEFAULT_MAILCOW_RELOAD
=
"docker restart
\
$
(docker ps -
-quiet --filter name=nginx-mailcow --filter
name=dovecot-mailcow)"
_reload
=
"
${
DEPLOY_MAILCOW_RELOAD
:-
$DEFAULT_MAILCOW_RELOAD
}
"
_reload
=
"
${
DEPLOY_MAILCOW_RELOAD
:-
$DEFAULT_MAILCOW_RELOAD
}
"
_info
"Run reload:
$_reload
"
_info
"Run reload:
$_reload
"
...
...
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