forked from TrueCloudLab/certificates
Merge pull request #1384 from francescocapuano/master
Add DOCKER_STEPCA_INIT_PASSWORD_FILE variable for Docker secrets
This commit is contained in:
commit
b96831ee45
1 changed files with 4 additions and 1 deletions
|
@ -46,7 +46,10 @@ function step_ca_init () {
|
|||
--provisioner-password-file "${STEPPATH}/provisioner_password"
|
||||
--address "${DOCKER_STEPCA_INIT_ADDRESS}"
|
||||
)
|
||||
if [ -n "${DOCKER_STEPCA_INIT_PASSWORD}" ]; then
|
||||
if [ -n "${DOCKER_STEPCA_INIT_PASSWORD_FILE}" ]; then
|
||||
cat < "${DOCKER_STEPCA_INIT_PASSWORD_FILE}" > "${STEPPATH}/password"
|
||||
cat < "${DOCKER_STEPCA_INIT_PASSWORD_FILE}" > "${STEPPATH}/provisioner_password"
|
||||
elif [ -n "${DOCKER_STEPCA_INIT_PASSWORD}" ]; then
|
||||
echo "${DOCKER_STEPCA_INIT_PASSWORD}" > "${STEPPATH}/password"
|
||||
echo "${DOCKER_STEPCA_INIT_PASSWORD}" > "${STEPPATH}/provisioner_password"
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue