import torrus 1.0.9
[freeside.git] / FS / FS / part_export / bsdshell.pm
1 package FS::part_export::bsdshell;
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/master.passwd files (BSD)',
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/bsdshell.export to export the files.
21 END
22 );
23
24 1;
25