Sha256: 8b4d72d8972890ac2ac1ab8e3354855ea1f8e1cfe4e9acecafdfb6e2b590d723
Contents?: true
Size: 1.65 KB
Versions: 5
Compression:
Stored size: 1.65 KB
Contents
#!/usr/bin/env ruby require 'rubygems' require 'ostruct' require 'optparse' module Flapjack class NotifierManagerOptions def self.parse(args) options = OpenStruct.new opts = OptionParser.new do |opts| opts.banner = "Usage: flapjack-notifier-manager <command> [options]" opts.separator " " opts.separator " where <command> is one of:" opts.separator " start start a worker" opts.separator " stop stop all workers" opts.separator " restart restart workers" opts.separator " " opts.separator " and [options] are:" opts.on('-b', '--beanstalk HOST', 'location of the beanstalkd') do |host| options.host = host end opts.on('-p', '--port PORT', 'beanstalkd port') do |port| options.port = port.to_s end opts.on('-r', '--recipients FILE', 'recipients file') do |recipients| options.recipients = File.expand_path(recipients.to_s) end end begin opts.parse!(args) rescue => e puts e.message.capitalize + "\n\n" puts opts exit 1 end # defaults options.host ||= "localhost" options.port ||= 11300 unless options.recipients =~ /.+/ puts "You must specify a recipients file!\n\n" puts opts exit 2 end unless File.exists?(options.recipients) puts "The specified recipients file doesn't exist!" exit 2 end unless %w(start stop restart).include?(args[0]) puts opts exit 1 end options end end end
Version data entries
5 entries across 5 versions & 1 rubygems