diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-12-16 10:25:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-12-16 10:25:09 +0000 |
commit | f8690924b2fbc0560188ec9ea069e07721a528ee (patch) | |
tree | 1148c77a534d79a805c3dec256dc9b48d8ee0793 | |
parent | 6450a48ddfbae1867aec6d9f7f63fda4aea06191 (diff) | |
download | drakx-backup-do-not-use-f8690924b2fbc0560188ec9ea069e07721a528ee.tar drakx-backup-do-not-use-f8690924b2fbc0560188ec9ea069e07721a528ee.tar.gz drakx-backup-do-not-use-f8690924b2fbc0560188ec9ea069e07721a528ee.tar.bz2 drakx-backup-do-not-use-f8690924b2fbc0560188ec9ea069e07721a528ee.tar.xz drakx-backup-do-not-use-f8690924b2fbc0560188ec9ea069e07721a528ee.zip |
- diskdrake:
o --nfs: handle "host:/" (#44320)
(backported from trunk)
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/fs/wild_device.pm | 2 |
2 files changed, 4 insertions, 1 deletions
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'; |