This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="main"> | |
| <div class="main-inner"> | |
| <div class="container"> | |
| <div class="row"> | |
| <div class="widget"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="main"> | |
| <div class="main-inner"> | |
| <div class="container"> | |
| <div class="row"> | |
| <div class="span12"> | |
| <div class="widget"> | |
| <div class="widget-header"> | |
| <i class="icon-certificate"></i> | |
| <h3> Terms of Service </h3> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ToDo: | |
| - Zabbix / Agent Install Chef Cookbook/Recipe | |
| - Zabbix / Auto register via API when server comes online | |
| - Affiliates / Creatives for banner ads | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Waiting server..................................................................................................................................................... | |
| Public DNS Name: .static.cloud-ips.com | |
| Public IP Address: | |
| Private IP Address: | |
| Password: | |
| Waiting for sshddone | |
| Bootstrapping Chef on .static.cloud-ips.com | |
| ERROR: Errno::ENOENT: No such file or directory - /etc/chef/validation.pem |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install Zabbix agent | |
| script "install_zabbix_agent" do | |
| interpreter "bash" | |
| user "root" | |
| cwd "/tmp" | |
| action :nothing | |
| notifies :restart, "service[zabbix_agentd]" | |
| code <<-EOH | |
| tar xvfz zabbix-agent.tar.gz | |
| rm -rf zabbix-agent.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %w{ fping build-essential libcurl3 libiksemel-dev libiksemel3 libsnmp-dev libiksemel-utils libcurl4-openssl-dev }.each do |pck| | |
| package "#{pck}" do | |
| action :install | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /Users/fluffheadsr/.rvm/gems/ruby-1.9.3-p125/gems/json-1.7.5/lib/json/ext/parser.bundle: undefined class/module Encoding (ArgumentError) | |
| from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| from /Users/fluffheadsr/.rvm/gems/ruby-1.9.3-p125/gems/json-1.7.5/lib/json/ext.rb:13 | |
| from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require' | |
| from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| from /Users/fluffheadsr/.rvm/gems/ruby-1.9.3-p125/gems/json-1.7.5/lib/json.rb:58 | |
| from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require' | |
| from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:36:in `require' | |
| from ./registraion.rb:6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'net/http' | |
| require 'rubygems' | |
| require 'json' | |
| require 'pp' | |
| ### Server Details | |
| @server="198.61.203." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'net/http' | |
| require 'rubygems' | |
| require 'json' | |
| require 'pp' | |
| ### Server Details | |
| @server="198.61.1.1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'net/http' | |
| require 'rubygems' | |
| require 'json' | |
| require 'pp' | |
| ### Server Details | |
| @server="198.61.203.111" |