Sha256: 761fe895b40879b9fc9f8b267fbd524fc4a3540155313e0d48017d65b930365f
Contents?: true
Size: 1.5 KB
Versions: 7
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 'chef/json_compat' class Chef class Knife class RackspaceServerDelete < Knife banner "knife 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::Compute.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
7 entries across 7 versions & 2 rubygems