Database Reference
In-Depth Information
Tutorial Links
Puppet Labs provides a variety of resources for those getting started.
Example Code
Puppet manifests are written in Ruby and follow typical Ruby syntax rules.
Our example manifest to install our application and ensure the configuration directory exists
would look like this:
# 'test_application.pp'
class
class test_application {
package { 'test_application' :
ensure
ensure => installed
}
file { 'test_application_conf' :
path => '/etc/test_application/conf' ,
ensure
ensure => directory ,
require => Package [ 'test_application' ]
}
}
Chef
License
Apache License, Version 2.0
Activity
High
Purpose
Node Management
Official Page
https://www.getchef.com
Search WWH ::




Custom Search