diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-01-28 17:36:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-01-28 17:36:41 +0000 |
commit | 365c5cb12e4b27869373d80b27037ca7a203303e (patch) | |
tree | 73a4a655c596062411a6b0925c94ad299c415a65 | |
parent | 89ae8e4d380d98463561887607e5e1b5ec0fb5a7 (diff) | |
download | drakx-backup-do-not-use-365c5cb12e4b27869373d80b27037ca7a203303e.tar drakx-backup-do-not-use-365c5cb12e4b27869373d80b27037ca7a203303e.tar.gz drakx-backup-do-not-use-365c5cb12e4b27869373d80b27037ca7a203303e.tar.bz2 drakx-backup-do-not-use-365c5cb12e4b27869373d80b27037ca7a203303e.tar.xz drakx-backup-do-not-use-365c5cb12e4b27869373d80b27037ca7a203303e.zip |
- diskdrake --fileshare:
o adapt to nfs-utils service rename (nfs-server instead of nfs) (#37069)
-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 0110f5061..2b0727561 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,6 +1,8 @@ - bootloader-config, diskdrake: o look for LVM PV on non partitioned disk before looking for DOS partition_table (esp. for lilo which puts the DOS magic) +- diskdrake --fileshare: + o adapt to nfs-utils service rename (nfs-server instead of nfs) Version 10.4.239.1 - 12 January 2008, by Thierry Vignaud - localedrake: diff --git a/perl-install/any.pm b/perl-install/any.pm index 8c9dea9f3..10095a850 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1156,7 +1156,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', |