Sha256: 6f824f038eb993b4a80ce50a56e6dcfc583de74ff3d0aaaffa51ce5eeb2a59f9
Contents?: true
Size: 1.5 KB
Versions: 18
Compression:
Stored size: 1.5 KB
Contents
# # Author:: Adam Jacob (<adam@opscode.com>) # Copyright:: Copyright (c) 2009 Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require 'chef/knife' require 'json' class Chef class Knife class RackspaceServerDelete < Knife banner "Sub-Command: rackspace server delete SERVER (options)" def h @highline ||= HighLine.new end def run require 'fog' require 'highline' require 'net/ssh/multi' require 'readline' connection = Fog::Rackspace::Servers.new( :rackspace_api_key => Chef::Config[:knife][:rackspace_api_key], :rackspace_username => Chef::Config[:knife][:rackspace_api_username] ) server = connection.servers.get(@name_args[0]) confirm("Do you really want to delete server ID #{server.id} named #{server.name}") server.destroy Chef::Log.warn("Deleted server #{server.id} named #{server.name}") end end end end
Version data entries
18 entries across 18 versions & 1 rubygems