Merge "Use command to set pythonintepreter" into stable/train

This commit is contained in:
Zuul 2020-07-13 10:04:37 +00:00 committed by Gerrit Code Review
commit 6b8a0d05f6
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ parameters:
PythonInterpreter:
type: string
description: The python interpreter to use for python and ansible actions
default: /usr/bin/python
default: "$(command -v python3 || command -v python)"
MakeHomeDir:
type: boolean
description: Configure PAM to create a users home directory if it does not exist.

View File

@ -35,7 +35,7 @@ parameters:
PythonInterpreter:
type: string
description: The python interpreter to use for python and ansible actions
default: "/usr/bin/python"
default: "$(command -v python3 || command -v python)"
IdMDomain:
default: ''
description: IDM domain to register IDM client. Typically, this is discovered

View File

@ -58,7 +58,7 @@ parameters:
PythonInterpreter:
type: string
description: The python interpreter to use for python and ansible actions
default: /usr/bin/python
default: "$(command -v python3 || command -v python)"
NeutronEnableL2Pop:
type: string
description: Enable/disable the L2 population feature in the Neutron agents.