summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/any.pm3
2 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index c37596b32..840b8c45e 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- diskdrake --fileshare
+ o install nautilus-filesharing if nautilus is installed (#34262)
+
Version 10.4.234 - 4 October 2007, by Olivier "blino" Blin
- finish-install: use translations for keyboard and 3D steps
diff --git a/perl-install/any.pm b/perl-install/any.pm
index c19402ac9..2ccb05252 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -1184,6 +1184,9 @@ Allowing this will permit users to simply click on \"Share\" in konqueror and na
services::do_not_start_service_on_boot($service);
}
}
+ if ($in->do_pkgs->is_installed('nautilus')) {
+ $in->do_pkgs->ensure_is_installed('nautilus-filesharing') or return;
+ }
}
$conf{RESTRICT} = bool2yesno($restrict);
setVarsInSh($file, \%conf);