Skip to content

Instantly share code, notes, and snippets.

@b4ldr
Created April 8, 2019 16:36
Show Gist options
  • Select an option

  • Save b4ldr/43aaaf7dca82c03e7eb77374ddcb8d07 to your computer and use it in GitHub Desktop.

Select an option

Save b4ldr/43aaaf7dca82c03e7eb77374ddcb8d07 to your computer and use it in GitHub Desktop.
class::something (
String $ensure = 'stopped'
) {
service { 'tata':
ensure => $ensure,
}
}
node default {
include class::something
}
node 'blah01.blah.com' {
class {'class::something':
ensure => 'running'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment