aboutsummaryrefslogtreecommitdiff
path: root/share/hydra/deploy
diff options
context:
space:
mode:
Diffstat (limited to 'share/hydra/deploy')
-rwxr-xr-xshare/hydra/deploy5
1 files changed, 5 insertions, 0 deletions
diff --git a/share/hydra/deploy b/share/hydra/deploy
index bf3f312..11bd914 100755
--- a/share/hydra/deploy
+++ b/share/hydra/deploy
@@ -24,6 +24,11 @@ for node in $NODES; do
echo "Deploying to $node..."
ssh -o ConnectTimeout=15 $node <<EOF
##### BEGIN REMOTE SCRIPT #####
+ if ! which git; then
+ echo "Installing git..."
+ sudo aptitude install git-core -y || exit 1
+ fi
+
if [ ! -d /usr/local/hydra ]; then
sudo git clone $ORIGIN /usr/local/hydra
( cd /usr/local/hydra ; sudo git reset --hard $COMMIT )