From: Clinton Ebadi Date: Sun, 10 Feb 2019 04:38:47 +0000 (-0500) Subject: create-user: add lovelace to execute_on_all_machines X-Git-Url: https://git.hcoop.net/hcoop/scripts.git/commitdiff_plain/8b3e03c4cf4a2843d66ff1c55e1270c7330ed982 create-user: add lovelace to execute_on_all_machines and a quick function to execute things on the mail servers --- 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 $* }