class Mixlib::ShellOut
def gid
The gid that the subprocess will switch to. If the group attribute is
def gid return nil unless group group.kind_of?(Integer) ? group : Etc.getgrnam(group.to_s).gid end
def gid return nil unless group group.kind_of?(Integer) ? group : Etc.getgrnam(group.to_s).gid end