diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-06-28 21:15:04 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-06-28 21:15:04 +0000 |
commit | 4026ee6b73851ac1dc2c9a77c85f6c3138456c5b (patch) | |
tree | ef3ba91d1153c23f331b033fe763f484fdfc3f6f /perl-install/network/smbnfs.pm | |
parent | 8ca92b87576d9aa7e98654186fcac7855fdec530 (diff) | |
download | drakx-4026ee6b73851ac1dc2c9a77c85f6c3138456c5b.tar drakx-4026ee6b73851ac1dc2c9a77c85f6c3138456c5b.tar.gz drakx-4026ee6b73851ac1dc2c9a77c85f6c3138456c5b.tar.bz2 drakx-4026ee6b73851ac1dc2c9a77c85f6c3138456c5b.tar.xz drakx-4026ee6b73851ac1dc2c9a77c85f6c3138456c5b.zip |
- add authentification in diskdrake --smb (esp. for windows NT)
- use "credentials=" to put the passwords
(ideas and investigations from Stew Benedict,
integrated by Pixel, but need testing)
Known bug: if you want to change the password when there are 2 entries in fstab
using the same username=/password=, writing the credentials is done in random order,
=> you've got one chance in 2 that the password is changed :-(
Diffstat (limited to 'perl-install/network/smbnfs.pm')
-rw-r--r-- | perl-install/network/smbnfs.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/network/smbnfs.pm b/perl-install/network/smbnfs.pm index d380aac0f..6b55f6fd0 100644 --- a/perl-install/network/smbnfs.pm +++ b/perl-install/network/smbnfs.pm @@ -3,6 +3,8 @@ package network::smbnfs; # $Id$ use strict; use diagnostics; +use fs; + sub new { my ($class, $v) = @_; |