This commit is contained in:
nazunalika 2021-01-27 18:21:55 -07:00
parent 62e05c6f50
commit 7e6938b136
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
{% if ipa_getcert_nss %}
nss_db_path="{{ ipahosts.nss_db_dir | default(ipa_getcert_nss_default_location) }}"
if [ ! -d "${nss_db_path}" && ! -L "${nss_db_path}" ]; then
if [ ! -d "${nss_db_path}" ] && [ ! -L "${nss_db_path}" ]; then
mkdir -p "${nss_db_path}"
fi
{% endif %}