aboutsummaryrefslogtreecommitdiffstats
path: root/create-ssl-certificate
blob: 595a439b3ab4d659f388735f520f9fcabc8f956f (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
#!/bin/sh
# $Id$
# helper script for creating ssl certificates

if [ $# -lt 3 ]; then
    echo "usage: $0 <pkg name> <num installed> <service> <bundle> <group>" 1>&2
    exit 1
fi

pkg=$1		# name of the package
num=$2		# number of packages installed
srv=$3		# name of the service
bundle=$4	# bundle mode
group=$5	# group with read access on key

if [ $num = 1 ]; then
    host=$(hostname)
    conffile=/tmp/$$
    keyfile=/etc/pki/tls/private/$pkg.pem
    if [ "$bundle" == true ]; then
	certfile=$keyfile
    else
	certfile=/etc/pki/tls/certs/$pkg.pem
    fi

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

[ req_dn ] 
commonName              = $host
organizationalUnitName  = default $srv cert for $host
emailAddress            = root@$host

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

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