Fix value of VAULT_DISABLE_FILE_PERMISSIONS_CHECK (#15438)
This variable doesn't use ParseBool and thus strictly requires "true" as the value. Signed-off-by: Alexander Scheel <alex.scheel@hashicorp.com>
This commit is contained in:
parent
aa868c5abf
commit
bd3658912b
|
@ -41,7 +41,7 @@ fi
|
|||
# Due to OpenShift environment compatibility, we have to allow group write
|
||||
# access to the Vault configuration. This requires us to disable the stricter
|
||||
# file permissions checks introduced in Vault v1.11.0.
|
||||
export VAULT_DISABLE_FILE_PERMISSIONS_CHECK=1
|
||||
export VAULT_DISABLE_FILE_PERMISSIONS_CHECK=true
|
||||
|
||||
# If the user is trying to run Vault directly with some arguments, then
|
||||
# pass them to Vault.
|
||||
|
|
Loading…
Reference in New Issue