vault/.release/linux/postinst
Vault Automation df7bd0e8c2
SMRE-733: Updates post-install text to properly reflect the updated IPLA blurb (#9331) (#9486)
* Updates post-install text to properly reflect the updated IPLA blurb

* Adds changelog for SMRE-733

Co-authored-by: ethel-hashicorp <ethel.evans@hashicorp.com>
2025-09-23 11:16:01 -06:00

63 lines
2.1 KiB
Bash

#!/bin/bash
if [[ -f /opt/vault/tls/tls.crt ]] && [[ -f /opt/vault/tls/tls.key ]]; then
echo "Vault TLS key and certificate already exist. Exiting."
exit 0
fi
echo "Generating Vault TLS key and self-signed certificate..."
# Create TLS and Data directory
mkdir --parents /opt/vault/tls
mkdir --parents /opt/vault/data
# Generate TLS key and certificate
cd /opt/vault/tls
openssl req \
-out tls.crt \
-new \
-keyout tls.key \
-newkey rsa:4096 \
-nodes \
-sha256 \
-x509 \
-subj "/O=HashiCorp/CN=Vault" \
-days 1095 # 3 years
# Update file permissions
chown --recursive vault:vault /etc/vault.d
chown --recursive vault:vault /opt/vault
chmod 600 /opt/vault/tls/tls.crt /opt/vault/tls/tls.key
chmod 700 /opt/vault/tls
echo "Vault TLS key and self-signed certificate have been generated in '/opt/vault/tls'."
# Set IPC_LOCK capabilities on vault
setcap cap_ipc_lock=+ep /usr/bin/vault
if [ -d /run/systemd/system ]; then
systemctl --system daemon-reload >/dev/null || true
fi
if [[ $(vault version) == *+ent* ]]; then
echo "
Agreement
The following shall apply unless your organization has a separately signed
agreement governing your use of the software made available here:
The software is subject to the license terms or community license (i.e. Mozilla
Public License 2.0 or Business Source License), as applicable, located in the
download package for the software, the IBM International Program License
Agreement, the IBM International License Agreement for Evaluation of Programs
(for evaluation uses), or the IBM International License Agreement for Early
Release of Programs (alpha and beta releases), and the applicable License
Information, copies of which are also available at https://www.ibm.com/terms.
In the event of a conflict between the license file in the download package and
the noted IBM licenses above, the relevant IBM terms will apply. Please refer
to the license terms prior to using the software. Your installation and use of
the software constitute your acceptance of those terms. If you do not accept
the terms, do not use the software.
"
fi