]> git.pld-linux.org Git - packages/openssl.git/commitdiff
- script for creating selfsigned certs. Taken from debian (rewritten)
authorPaweł Gołaszewski <blues@pld-linux.org>
Thu, 8 Jan 2004 09:50:49 +0000 (09:50 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    openssl-ssl-certificate.sh -> 1.1

openssl-ssl-certificate.sh [new file with mode: 0644]

diff --git a/openssl-ssl-certificate.sh b/openssl-ssl-certificate.sh
new file mode 100644 (file)
index 0000000..234c661
--- /dev/null
@@ -0,0 +1,33 @@
+#!/bin/sh -e
+
+CERT=/var/lib/openssl/certs/apache.pem
+export RANDFILE=/dev/random
+
+if [ "$1" != "--force" -a -f $CERT ]; then
+  echo "$CERT exists!  Use \"$0 --force.\""
+  exit 0
+fi
+
+if [ "$1" == "--force" ]; then
+  shift
+fi     
+
+echo
+echo creating selfsingned certificate
+echo "replace it with one signed by a certification authority (CA)"
+echo
+echo enter your ServerName at the Common Name prompt
+echo
+echo If you want your certificate to expire after x days call this programm 
+echo with "-days x" 
+
+# use special .cnf, because with normal one no valid selfsigned
+# certificate is created
+
+openssl req $@ -config /etc/openssl/openssl.cnf \
+  -new -x509 -nodes -out $CERT -keyout $CERT
+  
+chmod 600 $CERT
+
+ln -sf $CERT \
+  /var/lib/openssl/`/usr/bin/openssl x509 -noout -hash < $CERT`.0
This page took 0.035935 seconds and 4 git commands to generate.