Skip to content

Instantly share code, notes, and snippets.

@bscott
Created December 28, 2011 21:16
Show Gist options
  • Save bscott/1529777 to your computer and use it in GitHub Desktop.
Save bscott/1529777 to your computer and use it in GitHub Desktop.
nagios_stage
class nagios {
include nagios::install, nagios::config, nagios::service
}
class cleanup {
tidy { "/etc/nagios3/hosts.d/"
}
}
import "definitions/*.pp"
stage { 'first': before => Stage['main'] }
class {
'cleanup': stage => first;
'nagios': stage => main;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment