This commit was generated by cvs2svn to compensate for changes in r3921,
[freeside.git] / FS / FS / part_export / sysvshell.pm
1 package FS::part_export::sysvshell;
2
3 use vars qw(@ISA %info);
4 use Tie::IxHash;
5 use FS::part_export::passwdfile;
6
7 @ISA = qw(FS::part_export::passwdfile);
8
9 tie my %options, 'Tie::IxHash', %FS::part_export::passwdfile::options;
10
11 %info = (
12   'svc'      => 'svc_acct',
13   'desc'     =>
14     'Batch export of /etc/passwd and /etc/shadow files (Linux, Solaris)',
15   'options'  => \%options,
16   'nodomain' => 'Y',
17   'notes'    => <<'END'
18 MD5 crypt requires installation of
19 <a href="http://search.cpan.org/dist/Crypt-PasswdMD5">Crypt::PasswdMD5</a>
20 from CPAN.    Run bin/sysvshell.export to export the files.
21 END
22 );
23
24 1;
25