Sha256: 166267a2fb79d302d61367c1f936cc793f3e17cbabd06cfc866fddf3e77bb759

Contents?: true

Size: 1.15 KB

Versions: 5

Compression:

Stored size: 1.15 KB

Contents

Ohai.plugin(:Passwd) do
  provides "etc", "current_user"
  optional true

  # @param [String] str
  #
  # @return [String]
  #
  def fix_encoding(str)
    str.force_encoding(Encoding.default_external) if str.respond_to?(:force_encoding)
    str
  end

  collect_data do
    require "etc" unless defined?(Etc)

    unless etc
      etc Mash.new

      etc[:passwd] = Mash.new
      etc[:group] = Mash.new

      Etc.passwd do |entry|
        user_passwd_entry = Mash.new(dir: entry.dir, gid: entry.gid, uid: entry.uid, shell: entry.shell, gecos: entry.gecos)
        user_passwd_entry.each_value { |v| fix_encoding(v) }
        entry_name = fix_encoding(entry.name)
        etc[:passwd][entry_name] = user_passwd_entry unless etc[:passwd].key?(entry_name)
      end

      Etc.group do |entry|
        group_entry = Mash.new(gid: entry.gid,
                               members: entry.mem.map { |u| fix_encoding(u) })

        etc[:group][fix_encoding(entry.name)] = group_entry
      end
    end

    unless current_user
      current_user fix_encoding(Etc.getpwuid(Process.euid).name)
    end
  end

  collect_data(:windows) do
    # Etc returns nil on Windows
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ohai-16.5.6 lib/ohai/plugins/passwd.rb
ohai-16.5.4 lib/ohai/plugins/passwd.rb
ohai-16.5.0 lib/ohai/plugins/passwd.rb
ohai-16.4.12 lib/ohai/plugins/passwd.rb
ohai-16.4.11 lib/ohai/plugins/passwd.rb