BasicObject
# File lib/daemons/etc_extension.rb, line 4 def groupname(gid) Etc.group {|e| return e.name if gid == e.gid } nil end
# File lib/daemons/etc_extension.rb, line 8 def username(uid) Etc.passwd {|e| return e.name if uid == e.uid } nil end
[Validate]
Generated with the Darkfish Rdoc Generator 2.