Sha256: d4632b1d035bf1a86f4816e73bb2bd85bb5022c49da3957f79ada5ff7ca6afa2
Contents?: true
Size: 580 Bytes
Versions: 39
Compression:
Stored size: 580 Bytes
Contents
#!/usr/bin/env ruby # coding: utf-8 require 'trollop' require 'configatron' $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) require 'riemann/babbler/version' require 'riemann/babbler/start' opts = Trollop::options do version "Riemann babbler #{Riemann::Babbler::VERSION}" banner <<-EOS Riemann-babbler is plugin manager for riemann-tools. Usage: riemann-babbler [options] where [options] are: EOS opt :config, 'Config file', :default => '/etc/riemann-babbler/config.yml' end babbler = Riemann::Babbler::Starter.new(opts, configatron) babbler.start!
Version data entries
39 entries across 39 versions & 1 rubygems