diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-13 11:27:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-13 11:27:06 +0000 |
commit | b2f428a914854277bac8dd40556d4ab9ed6caa1f (patch) | |
tree | 5cbcd5d3c65f7fc19aba3e48696ff4837408a959 | |
parent | c04aac6b8f20f6527e1cd106dcc65289b86160e1 (diff) | |
download | drakx-b2f428a914854277bac8dd40556d4ab9ed6caa1f.tar drakx-b2f428a914854277bac8dd40556d4ab9ed6caa1f.tar.gz drakx-b2f428a914854277bac8dd40556d4ab9ed6caa1f.tar.bz2 drakx-b2f428a914854277bac8dd40556d4ab9ed6caa1f.tar.xz drakx-b2f428a914854277bac8dd40556d4ab9ed6caa1f.zip |
cleanup
-rwxr-xr-x | perl-install/standalone/fileshareset | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/standalone/fileshareset b/perl-install/standalone/fileshareset index 5e2dca0ea..18277d95f 100755 --- a/perl-install/standalone/fileshareset +++ b/perl-install/standalone/fileshareset @@ -45,7 +45,7 @@ To grant you the rights: - or put user "$username" in group "$authorisation_group"); my $no_export_method = "can't export anything: no nfs, no smb"; -my %exit_codes = reverse ( +my %exit_codes = reverse( 1 => $non_authorised, 2 => $usage, @@ -94,7 +94,7 @@ if ($modify) { $export->update_server; } } -my @mntpoints = grep {$_} uniq(map { map { $_->{mntpoint} } @$_ } @exports); +my @mntpoints = grep { $_ } uniq(map { map { $_->{mntpoint} } @$_ } @exports); print "$_\n" foreach grep { own($_) } @mntpoints; @@ -194,7 +194,7 @@ sub read { local *F; open F, $file or return []; - my ($prev_raw, $prev_line, %e, @l); + my ($prev_raw, $prev_line, @l); my $line_nb = 0; foreach my $raw (<F>) { $line_nb++; @@ -254,7 +254,7 @@ sub write { } sub update_server { - if (fork) { + if (fork()) { system('/usr/sbin/exportfs', '-r'); if (system('/sbin/pidof rpc.mountd >/dev/null') != 0 || system('/sbin/pidof nfsd >/dev/null') != 0) { @@ -377,7 +377,7 @@ sub name_mangle { } sub update_server { - if (fork) { + if (fork()) { system('/usr/bin/killall -HUP smbd 2>/dev/null'); if (system('/sbin/pidof smbd >/dev/null') != 0 || system('/sbin/pidof nmbd >/dev/null') != 0) { |