From 8b3e03c4cf4a2843d66ff1c55e1270c7330ed982 Mon Sep 17 00:00:00 2001 From: Clinton Ebadi Date: Sat, 9 Feb 2019 23:38:47 -0500 Subject: [PATCH] create-user: add lovelace to execute_on_all_machines and a quick function to execute things on the mail servers --- lib/create-user-lib.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/create-user-lib.sh b/lib/create-user-lib.sh index 80513ba..32ace7d 100644 --- a/lib/create-user-lib.sh +++ b/lib/create-user-lib.sh @@ -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 $* } -- 2.20.1