summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2009-01-09 08:57:15 +0000
committerPascal Rigaux <pixel@mandriva.com>2009-01-09 08:57:15 +0000
commit2bca42f6a4fec80c51e2ecbddb0005c08cd0d36e (patch)
treefb860c57075443f4e88700992ff4002fcd8a08bc
parent9ed00ebd0c5e755e6795a6d94305b26094468fdf (diff)
downloaddrakx-backup-do-not-use-2bca42f6a4fec80c51e2ecbddb0005c08cd0d36e.tar
drakx-backup-do-not-use-2bca42f6a4fec80c51e2ecbddb0005c08cd0d36e.tar.gz
drakx-backup-do-not-use-2bca42f6a4fec80c51e2ecbddb0005c08cd0d36e.tar.bz2
drakx-backup-do-not-use-2bca42f6a4fec80c51e2ecbddb0005c08cd0d36e.tar.xz
drakx-backup-do-not-use-2bca42f6a4fec80c51e2ecbddb0005c08cd0d36e.zip
releasing 11.71.5 which replaces 11.71.4
the switch to cifs suggested in #42483 was only partially done, comment #11 of the #42483 completes the fix. this (should) completly fixes: - diskdrake: o --smb: cifs must be used instead of smbfs (#42483)
-rw-r--r--perl-install/Makefile.config2
-rw-r--r--perl-install/NEWS6
-rw-r--r--perl-install/fs.pm9
3 files changed, 6 insertions, 11 deletions
diff --git a/perl-install/Makefile.config b/perl-install/Makefile.config
index 2222fe612..843fc671a 100644
--- a/perl-install/Makefile.config
+++ b/perl-install/Makefile.config
@@ -1,5 +1,5 @@
# -*- Makefile -*-
-VERSION:=11.71.4
+VERSION:=11.71.5
SUDO = sudo
TMPDIR = /tmp
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 05a94791c..a175f050e 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,9 +1,7 @@
-- diskdrake:
- o lookup for Samba master browsers too
-
-Version 11.71.4 - 8 January 2009
+Version 11.71.5 - 9 January 2009
- diskdrake:
+ o lookup for Samba master browsers too
o --smb: cifs must be used instead of smbfs (#42483)
Version 11.71.3 - 6 January 2009
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 2ecc946e2..d95890cb3 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -69,9 +69,6 @@ sub read_fstab {
1;
}
} split(',', $options));
- } elsif ($fs_type eq 'smb') {
- # prefering type "smbfs" over "smb"
- $fs_type = 'smbfs';
}
s/\\040/ /g foreach $mntpoint, $dev, $options;
@@ -150,7 +147,7 @@ sub add2all_hds {
foreach (@l) {
my $s =
$_->{fs_type} eq 'nfs' ? 'nfss' :
- $_->{fs_type} eq 'smbfs' ? 'smbs' :
+ $_->{fs_type} eq 'cifs' ? 'smbs' :
$_->{fs_type} eq 'davfs2' ? 'davs' :
isTrueLocalFS($_) || isSwap($_) || isOtherAvailableFS($_) ? '' :
'special';
@@ -246,7 +243,7 @@ sub prepare_write_fstab {
my $options = $_->{options} || 'defaults';
- if ($_->{fs_type} eq 'smbfs' && $options =~ /password=/ && !$b_keep_credentials) {
+ if ($_->{fs_type} eq 'cifs' && $options =~ /password=/ && !$b_keep_credentials) {
require fs::remote::smb;
if (my ($opts, $smb_credentials) = fs::remote::smb::fstab_entry_to_credentials($_)) {
$options = $opts;
@@ -335,7 +332,7 @@ sub get_raw_hds {
my @fstab = read_fstab($prefix, '/etc/fstab', 'keep_default');
$all_hds->{nfss} = [ grep { $_->{fs_type} eq 'nfs' } @fstab ];
- $all_hds->{smbs} = [ grep { $_->{fs_type} eq 'smbfs' } @fstab ];
+ $all_hds->{smbs} = [ grep { $_->{fs_type} eq 'cifs' } @fstab ];
$all_hds->{davs} = [ grep { $_->{fs_type} eq 'davfs2' } @fstab ];
$all_hds->{special} = [
(grep { $_->{fs_type} eq 'tmpfs' } @fstab),