]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/bacula/files/postbaculajob
fix typo
[dsa-puppet.git] / modules / bacula / files / postbaculajob
1 #!/usr/bin/ruby
2
3 # Copyright 2009 Peter Palfrader
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be
14 # included in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
24 require 'optparse'
25
26 NAGIOS_STATUS = { "OK" => 0, "WARNING" => 1, "CRITICAL" => 2, "UNKNOWN" => 3 }
27
28 def show_help(parser, code=0, io=STDOUT)
29   program_name = File.basename($0, '.*')
30   io.puts "Usage: #{program_name} <options>"
31   io.puts parser.summarize
32   exit(code)
33 end
34
35 director=nil
36 jobid=nil
37 joblevel=nil
38 jobname=nil
39 client=nil
40 output=nil
41 ARGV.options do |opts|
42         opts.on_tail("-h", "--help" , "Display this help screen")                                               { show_help(opts) }
43         opts.on("-d", "--director=AGE"   , String, "name of the director running this job")    { |x| director = x }
44         opts.on("-i", "--jobid=JOBID"     , String, "Job ID")                                  { |x| jobid = x }
45         opts.on("-l", "--joblevel=LEVEL"  , String, "Job Level")                               { |x| joblevel = x }
46         opts.on("-n", "--jobname=NAME"    , String, "Job Name")                                { |x| jobname = x }
47         opts.on("-c", "--client=NAME"     , String, "Client Name")                             { |x| client = x }
48         opts.on("-o", "--output=FILE"     , String, "output File")                             { |x| output = x }
49         opts.parse!
50 end
51 show_help(ARGV.options, 1, STDERR) if ARGV.length != 0
52 show_help(ARGV.options, 1, STDERR) unless director and jobid and joblevel and jobname and client and output
53
54 status = File.new(output, "w")
55 status.chmod(0644)
56 status.puts "OK"
57 status.puts "#{joblevel} Job #{jobname} (#{jobid}) by director #{director} on #{client} finished successfully at #{Time.now}"
58