Check for existance of pwdpath before copying

pull/1223/head
Carl Tashian 1 year ago
parent 640bd0b7c7
commit 313bf2354b
No known key found for this signature in database

@ -71,7 +71,7 @@ if [ ! -f "${STEPPATH}/config/ca.json" ]; then
init_if_possible
fi
if [ ! -f "${PROVISIONER_PWDPATH}" ]; then
if [ -f "${PWDPATH}" ] && [ ! -f "${PROVISIONER_PWDPATH}" ]; then
# For backward compatibility,
# if the --provisioner-password-file doesn't exist,
# use the same password as the CA.

Loading…
Cancel
Save