This repository has been archived on 2022-01-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ssladmin/gen.ca.key.sh
2016-02-22 01:42:47 -05:00

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