summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/fs/remote/nfs.pm1
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index bf9319820..2a297d29c 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- diskdrake --nfs
+ o ensure "nfs-common" is started (#34103)
- adduserdrake
o force the password to be utf8 (#23273)
diff --git a/perl-install/fs/remote/nfs.pm b/perl-install/fs/remote/nfs.pm
index 7455ee675..7acddb730 100644
--- a/perl-install/fs/remote/nfs.pm
+++ b/perl-install/fs/remote/nfs.pm
@@ -31,6 +31,7 @@ sub check {
$in->do_pkgs->ensure_binary_is_installed('nfs-utils-clients', '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()
1;
}