hydra_config_load
# Command line arguments
-ORIGIN="$1"
+NODES="$*"
COMMIT="347cca10fef9263bf1dd75b34123ec839de7166b"
# Build node list
-NODES="`hydra $HYDRA nodes`"
+if [ -z "$NODES" ]; then
+ NODES="`hydra $HYDRA nodes`"
+fi
# Validation
if [ -z "$ORIGIN" ]; then
##### BEGIN REMOTE SCRIPT #####
if ! which git &> /dev/null; then
echo "Installing git..."
- sudo aptitude install git-core -y || exit 1
+ sudo aptitude update
+ sudo aptitude install git-core -y
fi
if [ ! -d /usr/local/hydra ]; then