diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-01-28 17:35:42 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-01-28 17:35:42 +0000 |
commit | 971550e4ccaa68a884829fa9b8f1d0db70379c2b (patch) | |
tree | c5ba0ef6549971ef65b33fcb870f9ddc9830b346 | |
parent | 4de1d5ff736c8faf92a577175d403cc338764e25 (diff) | |
download | drakx-971550e4ccaa68a884829fa9b8f1d0db70379c2b.tar drakx-971550e4ccaa68a884829fa9b8f1d0db70379c2b.tar.gz drakx-971550e4ccaa68a884829fa9b8f1d0db70379c2b.tar.bz2 drakx-971550e4ccaa68a884829fa9b8f1d0db70379c2b.tar.xz drakx-971550e4ccaa68a884829fa9b8f1d0db70379c2b.zip |
- diskdrake --fileshare:
o adapt to nfs-utils service rename (nfs-server instead of nfs)
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/any.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index affbb109c..944bea76b 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -10,6 +10,8 @@ - bootloader-config: o fix handling LVM VGs with "-" in the name (#37267) o do not drop "lock" in chainload entries from grub's menu.lst (#36398) +- diskdrake --fileshare: + o adapt to nfs-utils service rename (nfs-server instead of nfs) Version 10.6.9 - 25 January 2008 diff --git a/perl-install/any.pm b/perl-install/any.pm index 42949221b..ec5a93398 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1158,7 +1158,7 @@ Allowing this will permit users to simply click on \"Share\" in konqueror and na if ($r ne $l[0]) { require services; my %types = ( - nfs => [ 'nfs-utils', 'nfs', + nfs => [ 'nfs-utils', 'nfs-server', N("NFS: the traditional Unix file sharing system, with less support on Mac and Windows.") ], smb => [ 'samba-server', 'smb', |