aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-05-12 14:50:49 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-05-12 14:50:49 -0300
commit63da39a917974cf60f5662bb87f927de58cfa356 (patch)
treebe423c9356b90a5c40a13ed9f25ac5208bab3aea
parentbeee0bf4eac2157b4216b0318ef33a1038b0dbd6 (diff)
downloadhydra-63da39a917974cf60f5662bb87f927de58cfa356.tar.gz
hydra-63da39a917974cf60f5662bb87f927de58cfa356.tar.bz2
Adding hydras command
-rwxr-xr-xhydras42
-rwxr-xr-xshare/hydra/deploy5
-rwxr-xr-xshare/hydractl/deploy5
3 files changed, 48 insertions, 4 deletions
diff --git a/hydras b/hydras
new file mode 100755
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
diff --git a/share/hydra/deploy b/share/hydra/deploy
index 5f45fdf..a41040d 100755
--- a/share/hydra/deploy
+++ b/share/hydra/deploy
@@ -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
diff --git a/share/hydractl/deploy b/share/hydractl/deploy
index f89f534..1411e36 100755
--- a/share/hydractl/deploy
+++ b/share/hydractl/deploy
@@ -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