forked from TrueCloudLab/certificates
Add DOCKER_STEPCA_INIT_PASSWORD_FILE variable for docker secrets
Add the management of the DOCKER_STEPCA_INIT_PASSWORD_FILE variable. over DOCKER_STEPCA_INIT_PASSWORD. If both are used only DOCKER_STEPCA_INIT_PASSWORD_FILE will be used.
This commit is contained in:
parent
0b832e389d
commit
7f54153a1b
1 changed files with 4 additions and 1 deletions
|
@ -46,7 +46,10 @@ function step_ca_init () {
|
||||||
--provisioner-password-file "${STEPPATH}/provisioner_password"
|
--provisioner-password-file "${STEPPATH}/provisioner_password"
|
||||||
--address "${DOCKER_STEPCA_INIT_ADDRESS}"
|
--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}/password"
|
||||||
echo "${DOCKER_STEPCA_INIT_PASSWORD}" > "${STEPPATH}/provisioner_password"
|
echo "${DOCKER_STEPCA_INIT_PASSWORD}" > "${STEPPATH}/provisioner_password"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue