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.serverclient.key.sh

7 lines
159 B
Bash

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