create-user: add lovelace to execute_on_all_machines
authorClinton Ebadi <clinton@unknownlamer.org>
Sun, 10 Feb 2019 04:38:47 +0000 (23:38 -0500)
committerClinton Ebadi <clinton@unknownlamer.org>
Sun, 10 Feb 2019 04:38:47 +0000 (23:38 -0500)
and a quick function to execute things on the mail servers

lib/create-user-lib.sh

index 80513ba..32ace7d 100644 (file)
@@ -42,12 +42,16 @@ function execute_on_domtool_server () {
     ssh -K gibran.hcoop.net $*
 }
 
+function execute_on_mail_nodes () {
+    ssh -K minsky.hcoop.net $*
+}
 
 function execute_on_all_machines () {
     $*
     ssh -K marsh.hcoop.net $*
     ssh -K minsky.hcoop.net $*
     ssh -K shelob.hcoop.net $*
+    ssh -K lovelace.hcoop.net $*
     ssh -K outpost.hcoop.net $*
 }