From f8690924b2fbc0560188ec9ea069e07721a528ee Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 16 Dec 2008 10:25:09 +0000 Subject: - diskdrake: o --nfs: handle "host:/" (#44320) (backported from trunk) --- perl-install/NEWS | 3 +++ perl-install/fs/wild_device.pm | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 8e35d843b..adbfc01a3 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- diskdrake: + o --nfs: handle "host:/" (#44320) + Version 11.71.2 - 5 December 2008 - finish-install diff --git a/perl-install/fs/wild_device.pm b/perl-install/fs/wild_device.pm index 10185bf20..afc59b4ee 100644 --- a/perl-install/fs/wild_device.pm +++ b/perl-install/fs/wild_device.pm @@ -19,7 +19,7 @@ sub analyze { 'uuid', $1; } elsif ($dev eq 'none' || $dev eq 'rootfs') { 'virtual'; - } elsif ($dev =~ m!^(\S+):/\w!) { + } elsif ($dev =~ m!^(\S+):/(\w|$)!) { 'nfs'; } elsif ($dev =~ m!^//\w!) { 'smb'; -- cgit v1.2.1