]> gitweb.fluxo.info Git - hydra.git/commitdiff
Adding hydras command
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 12 May 2012 17:50:49 +0000 (14:50 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 12 May 2012 17:50:49 +0000 (14:50 -0300)
hydras [new file with mode: 0755]
share/hydra/deploy
share/hydractl/deploy

diff --git a/hydras b/hydras
new file mode 100755 (executable)
index 0000000..2351316
--- /dev/null
+++ b/hydras
@@ -0,0 +1,42 @@
+#!/bin/bash
+#
+# Hydra Management Tool.
+#
+# Copyright (C) 2010 Sarava Group - sarava at lists.riseup.net
+# 
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or any later version.
+# 
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Basename configuration
+BASENAME="`basename $0`"
+
+if [ -z "$1" ]; then
+  echo "usage: $BASENAME <hydra1> [<hydra2> ... <hydraN>] -- <command>"
+fi
+
+for param in $*; do
+  shift
+
+  if [ "$param" == "--" ]; then
+    break
+  fi
+
+  hydras="$hydras $param"
+done
+
+for hydra in $hydras; do
+  echo "Issuing $* on hydra $hydra..."
+  hydra $hydra $*
+  echo ""
+done
index 5f45fdfb2398a21ca39149ebbecbe1f2078aabae..a41040d927a663fe6c4c5ce22a69cbc02745401a 100755 (executable)
@@ -47,8 +47,9 @@ for node in $NODES; do
   if [ ! -d /usr/local/hydra ]; then
     sudo git clone $ORIGIN /usr/local/hydra
     ( cd /usr/local/hydra ; sudo git reset --hard $COMMIT )
-    sudo ln -sf /usr/local/hydra/hydra /usr/local/sbin/hydra
-    sudo ln -sf /usr/local/hydra/hydra /usr/local/sbin/hydractl
+    sudo ln -sf /usr/local/hydra/hydra  /usr/local/sbin/hydra
+    sudo ln -sf /usr/local/hydra/hydra  /usr/local/sbin/hydractl
+    sudo ln -sf /usr/local/hydra/hydras /usr/local/sbin/hydras
   else
     ( cd /usr/local/hydra ; sudo git pull ; sudo git reset --hard $COMMIT )
   fi
index f89f534b34efebc81e4f77d4a192bc3626342b58..1411e36c3f4cbf97778bfb45d6f953d2851c94f7 100755 (executable)
@@ -37,8 +37,9 @@ fi
 if [ ! -d /usr/local/hydra ]; then
   sudo git clone $ORIGIN /usr/local/hydra
   ( cd /usr/local/hydra ; sudo git reset --hard $COMMIT )
-  sudo ln -sf /usr/local/hydra/hydra /usr/local/sbin/hydra
-  sudo ln -sf /usr/local/hydra/hydra /usr/local/sbin/hydractl
+  sudo ln -sf /usr/local/hydra/hydra  /usr/local/sbin/hydra
+  sudo ln -sf /usr/local/hydra/hydra  /usr/local/sbin/hydractl
+  sudo ln -sf /usr/local/hydra/hydras /usr/local/sbin/hydras
 else
   ( cd /usr/local/hydra ; sudo git pull ; sudo git reset --hard $COMMIT )
 fi