
Net::LDAP::posixGroup - Creates new Net::LDAP::Entry objects for a posixGroup entry.

Version 0.0.2

use Net::LDAP::posixGroup;
my $foo = Net::LDAP::posixGroup->new({baseDN=>'ou=group,dc=foo'});
#creates a new entry with the minimum requirements
my $entry = $foo->create({name=>'vvelox', gid=>'404'}, ['user1', 'user2']);

Creates a new Net::LDAP::Entry object. The first value is a hash. See the below for avialble values. The second is a array with the group members.
The group name. This is required.
The numeric GID of a group. This is required.
A optional LDAP desciption. This is optional.
The accepted values are 'cn' and 'gidNumber'.
A internal function user for clearing an error.

Missing baseDN.
No group name specified.
No GID specified.
The primary is a invalid value.

Zane C. Bowers, <vvelox at vvelox.net>

Please report any bugs or feature requests to bug-net-ldap-posixgroup at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-LDAP-posixGroup. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.
perldoc Net::LDAP::posixGroup
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-LDAP-posixGroup


Copyright 2008 Zane C. Bowers, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.