summaryrefslogtreecommitdiff
path: root/FS/FS
diff options
context:
space:
mode:
authorivan <ivan>2004-03-24 14:22:04 +0000
committerivan <ivan>2004-03-24 14:22:04 +0000
commite7fc7ebf927a7ab7159ad3cc8fa1530d7ce22a5a (patch)
treea909bdbb7921e520573304b47d65a7fc51f30a56 /FS/FS
parent39829996e06feb07cc5c59f6c0a30b807c98a0c4 (diff)
adding passwdfile export base class
Diffstat (limited to 'FS/FS')
-rw-r--r--FS/FS/part_export/passwdfile.pm18
1 files changed, 18 insertions, 0 deletions
diff --git a/FS/FS/part_export/passwdfile.pm b/FS/FS/part_export/passwdfile.pm
new file mode 100644
index 000000000..2978d2503
--- /dev/null
+++ b/FS/FS/part_export/passwdfile.pm
@@ -0,0 +1,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;
+