This file is indexed.

/usr/lib/ruby/vendor_ruby/specinfra/command/freebsd/v6/user.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
class Specinfra::Command::Freebsd::V6::User < Specinfra::Command::Freebsd::Base::User
  class << self
    def check_has_home_directory(user, path_to_home)
      "pw user show #{escape(user)} | cut -f 9 -d ':' | grep -w -- #{escape(path_to_home)}"
    end

    def check_has_login_shell(user, path_to_shell)
      "pw user show #{escape(user)} | cut -f 10 -d ':' | grep -w -- #{escape(path_to_shell)}"
    end

    def get_home_directory(user)
      "pw user show #{escape(user)} | cut -f 9 -d ':'"
    end

    def get_login_shell(user)
      "pw user show #{escape(user)} | cut -f 10 -d ':'"
    end
  end
end