From 023f92f9e3eec7de6c1286549000be79189a4fde Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Mon, 15 Dec 2014 16:00:47 -0500 Subject: changed atomic proxy to use pre-built container images --- .../monitoring_container/register-with-zabbix.rb | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100755 roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb (limited to 'roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb') diff --git a/roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb b/roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb deleted file mode 100755 index 02659228f..000000000 --- a/roles/docker_img_monitoring/files/monitoring_container/register-with-zabbix.rb +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env oo-ruby - -require 'optparse' -require '/usr/local/lib/zabbix_helper' - - -if __FILE__ == $0 - $stdout.sync = true - $stderr.sync = true - - opt_name = nil - opt_hostgroup = [] - opt_template = [] - - optparse = OptionParser.new do |opts| - opts.banner = "\nUsage: #{File.basename $0}\n\n" - - opts.on('--name NAME', '[REQUIRED] The host name to register') { |value| opt_name = value } - opts.on('--hostgroup GROUP', '[REQUIRED] The hostgroup(s) with which to register') { |value| opt_hostgroup << value } - opts.on('--template TEMPLATE', '[REQUIRED] The template with which to register') { |value| opt_template << value } - end - - optparse.parse! - - abort optparse.help if opt_name.nil? || opt_hostgroup.empty? || opt_template.empty? - - puts "Adding host [#{opt_name}] to zabbix..." - - zh = ZabbixHelper.new() - result = zh.create_agentless_host(opt_name, opt_hostgroup, opt_template) - if result['hostids'].nil? - raise "failed to add #{opt_name}" - else - puts "Successfully registered host with hostid [#{result['hostids'].first}]" - end -end -- cgit v1.2.3