new-user fixes
[hcoop/scripts.git] / ca-install
index 9fa74bc..dc6cc5a 100755 (executable)
@@ -1,13 +1,14 @@
 #!/bin/bash
 #
 # Install a signed certificate, placing a complimentary copy in the
-# member's homedir.  Also grant member domtool permissions for the
-# certificate.
+# member's homedir.  Validation is done on the certificate before
+# allowing it to be installed.  Also grant member domtool permissions
+# for the certificate.
 #
 # If the certificate comes from the member's home directory, then
 # don't place an extra copy there.
 #
-# Run this on deleuze as an admin.
+# Run this on an administrative node while holding admin tokens.
 #
 # Usage: ca-install member domain cert-file.pem [key-file.pem]
 
@@ -30,7 +31,7 @@ else
     KEY=$4
 fi
 
-WEBSERVER=mire.hcoop.net
+WEBSERVER=navajos.hcoop.net
 
 function verify_cert () {
     if test -z "$2" || test -n "$3"; then
@@ -55,9 +56,9 @@ function verify_cert () {
     fi
 }
 
-# Make sure we run this from deleuze
-if test "$(hostname -s)" != "deleuze"; then
-    echo "Error: This script must be run from deleuze."
+# Make sure we run this from an admin host...
+if test "$(hostname -s)" != "fritz"; then
+    echo "Error: This script must be run from fritz."
     exit 1
 fi