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.
name
The group name. This is required.
gid
The numeric GID of a group. This is required.
description
A optional LDAP desciption. This is optional.
primary
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:
- •
- RT: CPAN's request tracker
<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-LDAP-posixGroup>
- •
- AnnoCPAN: Annotated CPAN documentation
<http://annocpan.org/dist/Net-LDAP-posixGroup>
- •
- CPAN Ratings
<http://cpanratings.perl.org/d/Net-LDAP-posixGroup>
- •
- Search CPAN
<http://search.cpan.org/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.