aboutsummaryrefslogtreecommitdiff
path: root/share/hydra/nodes
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-11-13 12:32:55 -0200
committerSilvio Rhatto <rhatto@riseup.net>2010-11-13 12:32:55 -0200
commit88fb3d2d1bcfdc2cf59ca908b80bc40292aa8ed0 (patch)
tree529e288bd5ed0c5d8990c4e8d1e9cbb5b434fd9a /share/hydra/nodes
parentc8c013a4e9a6e051b96632e00ca0ef9d8dbd0204 (diff)
downloadhydra-88fb3d2d1bcfdc2cf59ca908b80bc40292aa8ed0.tar.gz
hydra-88fb3d2d1bcfdc2cf59ca908b80bc40292aa8ed0.tar.bz2
Initial working version for a node tool and misc changes
Diffstat (limited to 'share/hydra/nodes')
-rwxr-xr-xshare/hydra/nodes21
1 files changed, 21 insertions, 0 deletions
diff --git a/share/hydra/nodes b/share/hydra/nodes
index 93593e1..c7e4c4c 100755
--- a/share/hydra/nodes
+++ b/share/hydra/nodes
@@ -2,3 +2,24 @@
#
# Node tool.
#
+
+# Default node retrieval method
+function hydra_get_nodes {
+ # See http://www.mail-archive.com/puppet-users@googlegroups.com/msg01615.html
+ grep ^node $* | sed -e 's/^node //' | awk -F, '{for(i=1;i<=NF;i++) {print $i}}' | cut -d "'" -f2
+}
+
+# Load functions
+source $APP_BASE/lib/hydra/functions || exit 1
+
+# Load config
+hydra_config_load
+
+# Validation
+if [ -z "$PUPPET" ]; then
+ echo "No PUPPET parameter defined at $HYDRA preferences."
+ exit 1
+fi
+
+# Get nodes
+hydra_get_nodes $PUPPET/manifests/nodes/*