diff options
author | drebs <drebs@riseup.net> | 2011-03-11 14:53:39 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2011-03-11 14:53:39 -0300 |
commit | 01b2048dbf02ac726dabde5e846b9d6ac9aff0e6 (patch) | |
tree | 28f13f07a483a73ffcbfb25e4aba0c40f3d656bb /README | |
download | puppet-bootstrap-01b2048dbf02ac726dabde5e846b9d6ac9aff0e6.tar.gz puppet-bootstrap-01b2048dbf02ac726dabde5e846b9d6ac9aff0e6.tar.bz2 |
initial recommit
Diffstat (limited to 'README')
-rw-r--r-- | README | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +Puppet Boostrap Module +====================== + +This is a very specific puppet module that boostraps a node for use with +puppet-nodo infrastructure. + +It heavily depends on other puppet modules available mainly on +http://git.sarava.org. Check the code for the full dependency list. + +Bootstrap sequence +------------------ + +In Debian, run the following as super user to bootstrap: + + apt-get update + apt-get install puppet puppetmaster git-core + /etc/init.d/puppetmaster stop + apt-get install git + mkdir -p /etc/puppet/modules + git clone git://git.sarava.org/puppet-bootstrap /etc/puppet/modules/bootstrap + # edit /etc/puppet/modules/bootstrap/manifests/init.pp to suit your needs. + puppet apply --debug --verbose /etc/puppet/modules/bootstrap/manifests/init.pp + puppet agent --no-daemonize --debug --verbose --onetime + |