Sha256: 2d0ca49298ad50ac63c85dfbec8fd31bec5a754199443076c6994285844249a0

Contents?: true

Size: 416 Bytes

Versions: 19

Compression:

Stored size: 416 Bytes

Contents

#!/usr/bin/env ruby
$:.unshift(File.dirname(__FILE__) + "/../lib")
require "poolparty"

require 'git-style-binary/command'

GitStyleBinary.command do
  banner <<-EOS
Usage: #{$0} #{all_options_string}

  Cycle through nodes in the cloud and wait for the autoscaler to reboot 
EOS
  
  short_desc "Cycle the instances"

  run do |command|
    
    @loaded_clouds.each do |cld|
      cld.reboot!
    end
    
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
poolparty-1.6.9 bin/cloud-reboot
poolparty-1.6.8 bin/cloud-reboot
poolparty-1.6.7 bin/cloud-reboot
poolparty-1.6.6 bin/cloud-reboot
poolparty-1.6.5 bin/cloud-reboot
poolparty-1.6.4 bin/cloud-reboot
poolparty-1.6.3 bin/cloud-reboot
poolparty-1.6.2 bin/cloud-reboot
poolparty-1.6.1 bin/cloud-reboot
poolparty-1.6.0 bin/cloud-reboot
poolparty-1.5.0 bin/cloud-reboot
poolparty-1.4.8 bin/cloud-reboot
poolparty-1.4.7 bin/cloud-reboot
poolparty-1.4.6 bin/cloud-reboot
poolparty-1.4.5 bin/cloud-reboot
poolparty-1.4.4 bin/cloud-reboot
poolparty-1.4.3 bin/cloud-reboot
poolparty-1.4.2 bin/cloud-reboot
poolparty-1.4.1 bin/cloud-reboot