Sha256: 8711e27a65e4978a96d8a89f9ec12df8830be5e9c60e52ae7869e66d331f55b2

Contents?: true

Size: 1.58 KB

Versions: 72

Compression:

Stored size: 1.58 KB

Contents

require 'chef/chef_fs/knife'

class Chef
  class Knife
    class Show < Chef::ChefFS::Knife
      banner "knife show [PATTERN1 ... PATTERNn]"

      category "path-based"

      deps do
        require 'chef/chef_fs/file_system'
        require 'chef/chef_fs/file_system/not_found_error'
      end

      option :local,
        :long => '--local',
        :boolean => true,
        :description => "Show local files instead of remote"

      def run
        # Get the matches (recursively)
        error = false
        entry_values = parallelize(pattern_args) do |pattern|
          parallelize(Chef::ChefFS::FileSystem.list(config[:local] ? local_fs : chef_fs, pattern)) do |entry|
            if entry.dir?
              ui.error "#{format_path(entry)}: is a directory" if pattern.exact_path
              error = true
              nil
            else
              begin
                [entry, entry.read]
              rescue Chef::ChefFS::FileSystem::OperationNotAllowedError => e
                ui.error "#{format_path(e.entry)}: #{e.reason}."
                error = true
                nil
              rescue Chef::ChefFS::FileSystem::NotFoundError => e
                ui.error "#{format_path(e.entry)}: No such file or directory"
                error = true
                nil
              end
            end
          end
        end.flatten(1)
        entry_values.each do |entry, value|
          if entry
            output "#{format_path(entry)}:"
            output(format_for_display(value))
          end
        end
        if error
          exit 1
        end
      end
    end
  end
end

Version data entries

72 entries across 72 versions & 1 rubygems

Version Path
chef-11.14.6-x86-mingw32 lib/chef/knife/show.rb
chef-11.14.6 lib/chef/knife/show.rb
chef-11.14.2-x86-mingw32 lib/chef/knife/show.rb
chef-11.14.2 lib/chef/knife/show.rb
chef-12.0.0.alpha.0-x86-mingw32 lib/chef/knife/show.rb
chef-12.0.0.alpha.0 lib/chef/knife/show.rb
chef-11.14.0.rc.2-x86-mingw32 lib/chef/knife/show.rb
chef-11.14.0.rc.2 lib/chef/knife/show.rb
chef-11.14.0.alpha.4 lib/chef/knife/show.rb
chef-11.14.0.alpha.4-x86-mingw32 lib/chef/knife/show.rb
chef-11.14.0.alpha.3-x86-mingw32 lib/chef/knife/show.rb
chef-11.14.0.alpha.3 lib/chef/knife/show.rb