adding passwdfile export base class
[freeside.git] / FS / FS / part_export / passwdfile.pm
1 package FS::part_export::passwdfile;
2
3 use strict;
4 use vars qw(@ISA %options);
5 use Tie::IxHash;
6 use FS::part_export::null;
7
8 @ISA = qw(FS::part_export::null);
9
10 tie %options, 'Tie::IxHash',
11   'crypt' => { label=>'Password encryption',
12                type=>'select', options=>[qw(crypt md5)],
13                default=>'crypt',
14              },
15 ;
16
17 1;
18