This file is indexed.

/usr/lib/ruby/vendor_ruby/specinfra/command/openbsd/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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
class Specinfra::Command::Openbsd::Base::File < Specinfra::Command::Base::File
  class << self
    def get_md5sum(file)
      "cksum -qa md5 #{escape(file)} | cut -d ' ' -f 1"
    end

    def get_sha256sum(file)
      "cksum -qa sha256 #{escape(file)} | cut -d ' ' -f 1"
    end

    def check_is_linked_to(link, target)
      "stat -f %Y #{escape(link)} | grep -- #{escape(target)}"
    end

    def check_has_mode(file, mode)
      regexp = "^#{mode}$"
      "stat -f%Lp #{escape(file)} | grep #{escape(regexp)}"
    end

    def check_is_owned_by(file, owner)
      regexp = "^#{owner}$"
      "stat -f %Su #{escape(file)} | grep -- #{escape(regexp)}"
    end

    def check_is_grouped(file, group)
      regexp = "^#{group}$"
      "stat -f %Sg #{escape(file)} | grep -- #{escape(regexp)}"
    end

    def check_is_mounted(path)
      regexp = "on #{path} "
      "mount | grep #{escape(regexp)}"
    end

    def get_mode(file)
      "stat -f%Lp #{escape(file)}"
    end

    def get_mtime(file)
      "stat -f %m #{escape(file)}"
    end

    def get_size(file)
      "stat -f %z #{escape(file)}"
    end
  end
end