summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/passwdfile.pm
blob: 2978d250360b40c382e139c89d8f8da22ce08ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package FS::part_export::passwdfile;

use strict;
use vars qw(@ISA %options);
use Tie::IxHash;
use FS::part_export::null;

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

tie %options, 'Tie::IxHash',
  'crypt' => { label=>'Password encryption',
               type=>'select', options=>[qw(crypt md5)],
               default=>'crypt',
             },
;

1;