Download zip Select Archive Format
Name Last Update history
File empty ..
File dir manifests Loading commit data...
File txt README.md Loading commit data...

README.md

Project Manifests

Project manifests live in modules/projects/manifests/$project.pp. A simple project manifest example:

class projects::boxen {
  $dir = "${boxen::config::srcdir}/boxen"

  repository { $dir:
    source  => 'boxen/boxen'
  }

  ruby::local { $dir:
    version => 'system',
    require => Repository[$dir]
  }
}