aboutsummaryrefslogtreecommitdiff
path: root/bin/gen-self-signed
blob: 592a328ef0758dc88e6dd0d7766f65dca17515ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -e

if [ -z "$1" ]; then
  program=$(basename $0)
  echo "usage: $program <name>"
  exit 1
fi
name=$1

openssl req  -nodes -new -x509  -keyout $name.key -out $name.crt