module Rpam
Public Class Methods
auth(user, password, options = {})
click to toggle source
# File lib/rpam.rb, line 9 def auth user, password, options = {} options = options.dup options[:service] ||= 'rpam' Rpam::Ext.authpam(user, password, options[:service]) end
Also aliased as: authpam
Public Instance Methods
authpam(*args)
click to toggle source
# File lib/rpam.rb, line 4 def authpam *args ::Rpam.auth(*args) end