This repository has been archived on 2022-01-23. You can view files and clone it, but cannot push or open issues or pull requests.
ssladmin/gen.ca.key.sh

7 lines
144 B
Bash

#!/bin/bash
set -e
echo "Generating CA key..."
openssl genrsa -out ${rootdir}/key/ca.key 4096 > /dev/null 2>&1
chmod 400 ${rootdir}/key/ca.key