Merge "[ipaclient] Fix type of MakeHomeDir heat param"

This commit is contained in:
Zuul 2019-05-10 18:53:38 +00:00 committed by Gerrit Code Review
commit ab8b64c56a
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ parameters:
description: The python interpreter to use for python and ansible actions
default: /usr/bin/python
MakeHomeDir:
type: bool
type: boolean
description: Configure PAM to create a users home directory if it does not exist.
default: False
@ -142,7 +142,7 @@ outputs:
if [ -n "$realm" ]; then
OPTS="$OPTS --realm=$realm"
fi
if [ "$makehomedir" = "True" ]; then
if [ "${makehomedir,,}" = "true" ]; then
OPTS="$OPTS --mkhomedir"
fi