summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/bsdshell.pm
blob: 7b5feb252ebb54c6193de84e112e995c5754eca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package FS::part_export::bsdshell;

use vars qw(@ISA %info);
use Tie::IxHash;
use FS::part_export::passwdfile;

@ISA = qw(FS::part_export::passwdfile);

tie my %options, 'Tie::IxHash', %FS::part_export::passwdfile::options;

%info = (
  'svc'      => 'svc_acct',
  'desc'     =>
    'Batch export of /etc/passwd and /etc/master.passwd files (BSD)',
  'options'  => \%options,
  'nodomain' => 'Y',
  'notes'    => <<'END'
MD5 crypt requires installation of
<a href="http://search.cpan.org/dist/Crypt-PasswdMD5">Crypt::PasswdMD5</a>
from CPAN.  Run bin/bsdshell.export to export the files.
END
);

1;