aboutsummaryrefslogtreecommitdiffstats
path: root/USER/USER.pm
diff options
context:
space:
mode:
authorDexter Morgan <dmorgan@mageia.org>2011-02-07 11:58:29 +0000
committerDexter Morgan <dmorgan@mageia.org>2011-02-07 11:58:29 +0000
commit7b56e13962dfa49dba1f064a1ba0ab5cb27a179c (patch)
tree57613feda94a765122f30610b95fcabf5c5c5afa /USER/USER.pm
downloaduserdrake-1222680a979cec6dec0bb132977df9c6c82a551d.tar
userdrake-1222680a979cec6dec0bb132977df9c6c82a551d.tar.gz
userdrake-1222680a979cec6dec0bb132977df9c6c82a551d.tar.bz2
userdrake-1222680a979cec6dec0bb132977df9c6c82a551d.tar.xz
userdrake-1222680a979cec6dec0bb132977df9c6c82a551d.zip
tag 1.13.31.13.3
Diffstat (limited to 'USER/USER.pm')
-rw-r--r--USER/USER.pm71
1 files changed, 71 insertions, 0 deletions
diff --git a/USER/USER.pm b/USER/USER.pm
new file mode 100644
index 0000000..e95096d
--- /dev/null
+++ b/USER/USER.pm
@@ -0,0 +1,71 @@
+package USER;
+
+use strict;
+require DynaLoader;
+
+our @ISA = qw(DynaLoader);
+our $VERSION = '0.92';
+
+USER->bootstrap($VERSION);
+
+# Preloaded methods go here.
+
+package USER::ADMIN;
+our @ISA = qw();
+
+package USER::ENT;
+our @ISA = qw();
+
+1;
+__END__
+# Below is stub documentation for your module. You'd better edit it!
+
+=head1 NAME
+
+USER - Perl extension for libuser API
+
+=head1 SYNOPSIS
+
+ use USER;
+
+=head1 ABSTRACT
+
+ A user and group account administration library
+
+=head1 DESCRIPTION
+
+ The libuser library implements a standardized interface for manipulating
+ and administering user and group accounts. The library uses pluggable
+ back-ends to interface to its data sources.
+ This is the perl Extension for libuser. It is mostly used by userdrake
+ which is a GUI for user and groups administration
+
+=head2 EXPORT
+
+None by default.
+
+
+
+=head1 SEE ALSO
+
+Mention other useful documentation such as the documentation of
+related modules or operating system documentation (such as man pages
+in UNIX), or any relevant external documentation such as RFCs or
+standards.
+
+If you have a mailing list set up for your module, mention it here.
+
+If you have a web site set up for your module, mention it here.
+
+=head1 AUTHOR
+
+Daouda LO, E<lt>daouda@mandrakesoft.comE<gt>
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2003 by Mandrakesoft SA
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut