]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/scripts/httpscert
Change qemu to a version that support kvm and kqemu.
[people/pmueller/ipfire-2.x.git] / src / scripts / httpscert
index 97c6c3ce2bcd4a6a58ea1bc4e50965e8ebee5929..fb2d64bace8d9060a3083d847eb54218dac10c27 100644 (file)
@@ -1,6 +1,5 @@
 #!/bin/sh
 #
-# $Id: httpscert,v 1.1.2.2 2005/12/15 21:59:57 eoberlander Exp $
 # new : generate new certificate
 # read: read issuer in certificate and verify if it is the same as hostname
 
@@ -31,7 +30,7 @@ case "$1" in
                ISSUER=`openssl x509 -in /etc/httpd/server.crt -text -noout | grep Issuer | /usr/bin/cut -f2 -d '='`
                HOSTNAME=`/bin/hostname -f`
                if [ "$ISSUER" != "$HOSTNAME" ]; then
-                       echo "Certificate issuer '$ISSUER' is not the same as the hostname'$HOSTNAME'"
+                       echo "Certificate issuer '$ISSUER' is not the same as the hostname '$HOSTNAME'"
                        echo "Probably host or domain name has been changed in setup"
                        echo "You could remake server certificate with '/usr/local/bin/httpscert new'"
                        exit 1