You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 25, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: modules/install-vault/install-vault
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ set -e
10
10
11
11
readonly DEFAULT_INSTALL_PATH="/opt/vault"
12
12
readonly DEFAULT_VAULT_USER="vault"
13
+
readonly DEFAULT_SKIP_PACKAGE_UPDATE="false"
13
14
14
15
readonly DOWNLOAD_PACKAGE_PATH="/tmp/vault.zip"
15
16
@@ -30,6 +31,7 @@ function print_usage {
30
31
echo -e " --download-url\t\tUrl to exact Vault package to be installed. Optional if version is provided."
31
32
echo -e " --path\t\tThe path where Vault should be installed. Optional. Default: $DEFAULT_INSTALL_PATH."
32
33
echo -e " --user\t\tThe user who will own the Vault install directories. Optional. Default: $DEFAULT_VAULT_USER."
34
+
echo -e " --skip-package-update\t\tSkip yum/apt updates. Optional. Only recommended if you already ran yum update or apt-get update yourself. Default: $DEFAULT_SKIP_PACKAGE_UPDATE."
0 commit comments