Sha256: cbb309d99b7a034a2619b08289188039e5bd4d83bb343c342261f69afadaf479

Contents?: true

Size: 1.22 KB

Versions: 8

Compression:

Stored size: 1.22 KB

Contents

# 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/digital_ocean_base'

class Chef
  class Knife
    class DigitalOceanSshkeyList < Knife
      include Knife::DigitalOceanBase

      banner 'knife digital_ocean sshkey list'

      def run
        $stdout.sync = true

        validate!

        sshkey_list = [
          h.color('ID',   :bold),
          h.color('Name', :bold),
        ]

        sshkeys = client.ssh_keys.list.ssh_keys

        sshkeys.sort! do |a, b|
          a.name <=> b.name
        end

        sshkeys.each do |sshkey|
          sshkey_list << sshkey.id.to_s
          sshkey_list << sshkey.name.to_s
        end

        puts h.list(sshkey_list, :uneven_columns_across, 2)
      end

    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
knife-digital_ocean-0.7.0 lib/chef/knife/digital_ocean_sshkey_list.rb
knife-digital_ocean-0.6.0 lib/chef/knife/digital_ocean_sshkey_list.rb
knife-digital_ocean-0.5.0 lib/chef/knife/digital_ocean_sshkey_list.rb
knife-digital_ocean-0.4.0 lib/chef/knife/digital_ocean_sshkey_list.rb
knife-digital_ocean-0.3.0 lib/chef/knife/digital_ocean_sshkey_list.rb
knife-digital_ocean-0.2.0 lib/chef/knife/digital_ocean_sshkey_list.rb
knife-digital_ocean-0.1.1 lib/chef/knife/digital_ocean_sshkey_list.rb
knife-digital_ocean-0.1.0 lib/chef/knife/digital_ocean_sshkey_list.rb