Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tfhartmann
Created September 18, 2013 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tfhartmann/6612072 to your computer and use it in GitHub Desktop.
Save tfhartmann/6612072 to your computer and use it in GitHub Desktop.
HAAG Puppet Example for Common Infrastructure Scaffolding - The API section of Integrated_Operations wiki page
class iam_ldap_server (
  <parameters go here>
) {
  # 389_server is the module written by IAM
  class { '389_server':
    ensure  => 'present',
    require => Class['server'],
    <other parameters go here>
  }
  # server is the base server configuration
  # module written by Unix-Linux Systems
  class { 'server':
    <other parameters go here>
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment