You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
355 B
Plaintext

9 years ago
#!/usr/bin/env bash
9 years ago
set -e;
9 years ago
BASEDIR="$(dirname $(realpath $0))/../";
9 years ago
cd "${BASEDIR}";
STORAGE="$(realpath "${BASEDIR}/storage/ca")";
9 years ago
9 years ago
mkdir -p "${STORAGE}/certs";
9 years ago
9 years ago
echo 01 > "${STORAGE}/serial";
echo 01 > "${STORAGE}/crl_serial";
touch "${STORAGE}/database";
touch "${STORAGE}/database.attr";
9 years ago
9 years ago
"${BASEDIR}/bin/create-ca" $1;
"${BASEDIR}/bin/create-crl";