aboutsummaryrefslogtreecommitdiffstats
path: root/create-ssl-certificate
blob: 599719b6876a5c7af9941b65474f379b03e678e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/sh
# $Id$
# helper script for creating ssl certificates

while [ $# -gt 0 ]; do
    case $1 in
	   -g) group=$2; shift 2;;
	   -b) bundle="true"; shift;;
	    *) args=( ${args[@]:-} $1 ); shift;;
      esac
done

pkg=${args[0]}	# name of the package
num=${args[1]}	# number of packages installed
srv=${args[2]}	# name of the service

if [ -z "$pkg" -o -z "$num" -o -z "$srv" ]; then
    echo "usage: $0 [-g <group>] [-b] <pkg name> <num installed> <service>" 1>&2
    exit 1
fi

if [ ! -f /etc/pki/tls/private/$srv.pem ]; then 
    # default values
    host=$(hostname)
    KEY_LENGTH=2048
    CERT_DAYS=365
    EMAIL_ADDRESS=root@$host
    COMMON_NAME=$host
    ORGANISATIONAL_UNIT_NAME="default $srv cert for $host"

    # source configuration
    if [ -f /etc/sysconfig/ssl ]; then
	. /etc/sysconfig/ssl
    fi

    conffile=/tmp/$$
    keyfile=/etc/pki/tls/private/$srv.pem
    if [ "$bundle" == true ]; then
	certfile=$keyfile
    else
	certfile=/etc/pki/tls/certs/$srv.pem
    fi

    # create a temporary configuration file
    cat > $conffile <<EOF
default_bits            = $KEY_LENGTH
encrypt_key             = no
prompt                  = no
distinguished_name      = req_dn
req_extensions          = req_ext

[ req_dn ] 
commonName              = $COMMON_NAME
organizationalUnitName  = $ORGANISATIONAL_UNIT_NAME
emailAddress            = $EMAIL_ADDRESS

[ req_ext ]
basicConstraints        = CA:FALSE
EOF
    
    # generate certificates
    openssl req -new -x509 -days $CERT_DAYS \
        -config $conffile \
        -keyout $keyfile \
        -out $certfile >/dev/null

    # enforce strict perms on key
    if [ -n "$group" ]; then
	chmod 640 $keyfile
	chgrp $group $keyfile
    else
	chmod 600 $keyfile
    fi
fi