summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rwxr-xr-xshare/hydra/register22
-rwxr-xr-xshare/hydractl/init6
2 files changed, 26 insertions, 2 deletions
diff --git a/share/hydra/register b/share/hydra/register
index 5364f58..bf36540 100755
--- a/share/hydra/register
+++ b/share/hydra/register
@@ -1,3 +1,23 @@
#!/bin/bash
+#
# Register an existing hydra
-# TODO
+#
+
+CONFIG="$HOME/.hydra/config"
+HYDRA="$1"
+BASEDIR="$2"
+PUPPET="$(dirname `find $BASEDIR -name puppet.conf`)"
+
+mkdir -p `dirname $CONFIG`
+
+if grep -q -e "^$HYDRA=" $CONFIG; then
+ echo "Hydra $HYDRA already defined"
+ exit 1
+fi
+
+# Reparse basedir to force absolute folder
+BASEDIR="`cd $BASEDIR && pwd`"
+
+# Add entry
+chmod 700 $BASEDIR
+echo "$HYDRA=\"$BASEDIR\"" >> $CONFIG
diff --git a/share/hydractl/init b/share/hydractl/init
index 6c8264a..06fd754 100755
--- a/share/hydractl/init
+++ b/share/hydractl/init
@@ -1,4 +1,7 @@
#!/bin/bash
+#
+# Bootstrap a new hydra using the current host as a starting point.
+#
hydractl backports
hydractl install_puppet
@@ -6,7 +9,8 @@ hydractl install_puppet
mkdir -p /etc/puppet/modules
git clone git://git.sarava.org/puppet-bootstrap /etc/puppet/modules/bootstrap
-# TODO: edit /etc/puppet/modules/bootstrap/manifests/site.pp to suit your needs.
+echo "Editing /etc/puppet/modules/bootstrap/manifests/site.pp to suit your needs..."
+$EDITOR /etc/puppet/modules/bootstrap/manifests/site.pp
puppetd --no-daemonize --debug --verbose --onetime /etc/puppet/modules/bootstrap/manifests/init.pp
puppetd --no-daemonize --debug --verbose