summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-01-29 13:26:57 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-01-29 13:26:57 +0000
commitc3a56db954023550258c3e962c12c68572a4b7eb (patch)
tree86c35698f32284bf164d56c85594bd1a160e6483 /perl-install
parent9e36f0517c289856e8f27a7eb4998cc01cde809b (diff)
downloaddrakx-backup-do-not-use-c3a56db954023550258c3e962c12c68572a4b7eb.tar
drakx-backup-do-not-use-c3a56db954023550258c3e962c12c68572a4b7eb.tar.gz
drakx-backup-do-not-use-c3a56db954023550258c3e962c12c68572a4b7eb.tar.bz2
drakx-backup-do-not-use-c3a56db954023550258c3e962c12c68572a4b7eb.tar.xz
drakx-backup-do-not-use-c3a56db954023550258c3e962c12c68572a4b7eb.zip
handle the case where samba and/or nfs-utils are not installed
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/any.pm27
-rw-r--r--perl-install/diskdrake/smbnfs_gtk.pm2
2 files changed, 26 insertions, 3 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index 2b64cef7c..53f58f1b0 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -913,14 +913,37 @@ sub devfssymlinkf {
}
sub fileshare_config {
- my ($in) = @_;
-
+ my ($in, $type) = @_; #- $type is 'nfs', 'smb' or ''
+
my $file = '/etc/security/fileshare.conf';
my %conf = getVarsFromSh($file);
my @l = (__("No sharing"), __("Allow all users"), __("Custom"));
my $restrict = exists $conf{RESTRICT} ? text2bool($conf{RESTRICT}) : 1;
+ if ($restrict) {
+ #- verify we can export in $type
+ my %type2file = (nfs => [ '/etc/init.d/nfs', 'nfs-utils' ], smb => [ '/etc/init.d/smb', 'samba' ]);
+ my @wanted = $type ? $type : keys %type2file;
+ my @have = grep { -e $type2file{$_}[0] } @wanted;
+ if (!@have) {
+ if (@wanted == 1) {
+ $in->ask_okcancel('', _("The package %s needs to be installed. Do you want to install it?", $type2file{$wanted[0]}[1]), 1) or return;
+ } else {
+ my %choices;
+ my $wanted = $in->ask_many_from_list('', _("You can export using NFS or Samba. Which one do you want"),
+ { list => \@wanted }) or return;
+ @wanted = @$wanted or return;
+ }
+ $in->do_pkgs->install(map { $type2file{$_}[1] } @wanted);
+ @have = grep { -e $type2file{$_}[0] } @wanted;
+ }
+ if (!@have) {
+ $in->ask_warn('', _("Mandatory package %s is missing", $wanted[0]));
+ return;
+ }
+ }
+
my $r = $in->ask_from_list_('fileshare',
'Do you want to allow users to export some directories in their home?
Allowing this will permit users to simply click on "Share" in konqueror and nautilus.
diff --git a/perl-install/diskdrake/smbnfs_gtk.pm b/perl-install/diskdrake/smbnfs_gtk.pm
index f5e90a5fb..f9fed7f78 100644
--- a/perl-install/diskdrake/smbnfs_gtk.pm
+++ b/perl-install/diskdrake/smbnfs_gtk.pm
@@ -78,7 +78,7 @@ sub per_entry_action_box {
my @l = (
if_($entry, __("Mount point") => \&raw_hd_mount_point),
if_($entry && $entry->{mntpoint}, __("Options") => \&raw_hd_options),
- __("Export") => \&any::fileshare_config,
+ __("Export") => sub { any::fileshare_config($in, $kind->{type}) },
__("Done") => \&done,
);
push @buttons, map {