Skip to content

Instantly share code, notes, and snippets.

@big-samantha
Last active October 4, 2016 23:38
Show Gist options
  • Save big-samantha/734dc44e73b64c764e7cd766338ff11b to your computer and use it in GitHub Desktop.
Save big-samantha/734dc44e73b64c764e7cd766338ff11b to your computer and use it in GitHub Desktop.
class apache (
$package = $apache::params::package,
) inherits apache::params {
package { 'apache':
name => $package,
}
}
class apache::params (
case $osmajrelease {
7: { $package = 'httpd' }
6: { $package = 'apache' }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment