From 88a221b243f12294099f66e8dd133ceea36bcdf1 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 28 Aug 2002 10:00:22 +0000 Subject: default option username=% for smb --- perl-install/fs.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/perl-install/fs.pm b/perl-install/fs.pm index ab345cf56..ada108b17 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -441,6 +441,9 @@ sub set_default_options { nosuid => 1, 'rsize=8192,wsize=8192' => 1, soft => 1, }); } + if (isThisFs('smbfs', $part)) { + put_in_hash($options, { 'username=' => '%' }); + } if (isFat($part) || $is_auto) { put_in_hash($options, { -- cgit v1.2.1