diff options
author | Olivier Blin <blino@mageia.org> | 2012-07-22 21:09:12 +0000 |
---|---|---|
committer | Olivier Blin <blino@mageia.org> | 2012-07-22 21:09:12 +0000 |
commit | 37cb4ef498fe90022c36286a48396f8ec99e79a1 (patch) | |
tree | 3215a7bcf0f0a9400faecc7ffbb6d85cac3815dc /perl-install/fs/remote | |
parent | eb05f259650af767840af1203cadc09281fc5aed (diff) | |
download | drakx-37cb4ef498fe90022c36286a48396f8ec99e79a1.tar drakx-37cb4ef498fe90022c36286a48396f8ec99e79a1.tar.gz drakx-37cb4ef498fe90022c36286a48396f8ec99e79a1.tar.bz2 drakx-37cb4ef498fe90022c36286a48396f8ec99e79a1.tar.xz drakx-37cb4ef498fe90022c36286a48396f8ec99e79a1.zip |
diskdrake: install nfs-utils instead of nfs-utils-clients
(#6570, merged back in nfs-utils)
Diffstat (limited to 'perl-install/fs/remote')
-rw-r--r-- | perl-install/fs/remote/nfs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/remote/nfs.pm b/perl-install/fs/remote/nfs.pm index 7ebda3b11..99e9b7b04 100644 --- a/perl-install/fs/remote/nfs.pm +++ b/perl-install/fs/remote/nfs.pm @@ -28,7 +28,7 @@ sub to_dev_raw { sub check { my ($_class, $in) = @_; - $in->do_pkgs->ensure_binary_is_installed('nfs-utils-clients', 'showmount') or return; + $in->do_pkgs->ensure_binary_is_installed('nfs-utils', 'showmount') or return; require services; services::start_not_running_service('portmap'); services::start('nfs-common'); #- TODO: once nfs-common is fixed, it could use start_not_running_service() |