Merge "[ipaclient] Fix type of MakeHomeDir heat param"
This commit is contained in:
commit
ab8b64c56a
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user