Skip to content

Instantly share code, notes, and snippets.

@joemiller
Created December 20, 2011 21:39
Show Gist options
  • Save joemiller/1503401 to your computer and use it in GitHub Desktop.
Save joemiller/1503401 to your computer and use it in GitHub Desktop.
DEFAULT_OPTIONS = {
:log_file => '/tmp/sensu.log',
:config_file => '/etc/sensu/config.json',
:config_dir => '/etc/sensu/conf.d',
:pid_file => '/tmp/' + $0.split('/').last + '.pid'
:validate => true,
:daemonize => false,
}
def daemonize?
@options[:daemonize]
end
def log_file
@options[:log_file]
end
def pid_file
@options[:pid_file]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment