This file is indexed.

/usr/lib/ruby/vendor_ruby/specinfra/command/solaris/base/file.rb is in ruby-specinfra 2.66.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
class Specinfra::Command::Solaris::Base::File < Specinfra::Command::Base::File
  class << self
    def check_contains_within(file, expected_pattern, from=nil, to=nil)
      from ||= '1'
      to ||= '$'
      sed = "sed -n #{escape(from)},#{escape(to)}p #{escape(file)}"
      sed_end = "sed -n 1,#{escape(to)}p"
      checker_with_regexp = check_contains_with_regexp("/dev/stdin", expected_pattern)
      checker_with_fixed  = check_contains_with_fixed_strings("/dev/stdin", expected_pattern)
      "#{sed} | #{sed_end} | #{checker_with_regexp}|| #{sed} | #{sed_end} | #{checker_with_fixed}"
    end

    def check_is_accessible_by_user(file, user, access)
      # http://docs.oracle.com/cd/E23823_01/html/816-5166/su-1m.html
      ## No need for login shell as it seems that behavior as superuser is favorable for us, but needs
      ## to be better tested under real solaris env
      "su #{user} -c \"test -#{access} #{file}\""
    end
  end
end