mirror of
https://github.com/balena-io/open-balena.git
synced 2024-12-19 05:37:52 +00:00
709d00b898
The quickstart script should be able to run on macOS machines and not just Linux ones. Signed-off-by: Rich Bayliss <rich@balena.io> Change-type: patch
26 lines
852 B
Bash
26 lines
852 B
Bash
#!/bin/bash -e
|
|
# shellcheck disable=SC2034
|
|
|
|
# ensure we have `easyrsa` available
|
|
if [ -z "${easyrsa_bin-}" ] || [ ! -x "${easyrsa_bin}" ]; then
|
|
easyrsa_bin="$(command -v easyrsa 2>/dev/null || true)"
|
|
if [ -z "${easyrsa_bin}" ]; then
|
|
easyrsa_dir="$(mktemp -dt easyrsa.XXXXXXXX)"
|
|
easyrsa_url="https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.5/EasyRSA-nix-3.0.5.tgz"
|
|
echo " - Downloading easy-rsa..."
|
|
(cd "${easyrsa_dir}"; curl -sL "${easyrsa_url}" | tar xz --strip-components=1)
|
|
easyrsa_bin="${easyrsa_dir}/easyrsa"
|
|
# shellcheck disable=SC2064
|
|
trap "rm -rf \"${easyrsa_dir}\"" EXIT
|
|
fi
|
|
export EASYRSA_BATCH=1
|
|
export EASYRSA_KEY_SIZE=4096
|
|
fi
|
|
|
|
# setup ROOT_PKI path
|
|
ROOT_PKI="$(realpath "${OUT}/root")"
|
|
|
|
# global expiry settings
|
|
CA_EXPIRY_DAYS=3650
|
|
CRT_EXPIRY_DAYS=730
|