summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/passwdfile.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/part_export/passwdfile.pm')
-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 0000000..2978d25
--- /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;
+