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
Bash

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