APIdock / Ruby
/
method

initgroups

ruby latest stable - Class: Process
initgroups(p1, p2)
public

Initializes the supplemental group access list by reading the system group database and using all groups of which the given user is a member. The group with the specified gid is also added to the list. Returns the resulting Array of the gids of all the groups in the supplementary group access list. Not available on all platforms.

Process .groups  #=> [0, 1, 2, 3, 4, 6, 10, 11, 20, 26, 27]
Process .initgroups ( "mgranger", 30 ) #=> [30, 6, 10, 11]
Process .groups  #=> [30, 6, 10, 11]
static VALUE
proc_initgroups(VALUE obj, VALUE uname, VALUE base_grp)
{
 if (initgroups(StringValueCStr(uname), OBJ2GID(base_grp)) != 0) {
 rb_sys_fail(0);
 }
 return proc_getgroups(obj);
}

AltStyle によって変換されたページ (->オリジナル) /