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

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