\n"; } else { # Doing on just one host @hosts = grep { $_->{'id'} == $in{'_acl_host'} } @allhosts; local ($s) = grep { $_->{'id'} == $hosts[0]->{'id'} } @servers; print "",&text('acl_doing2', $who, &server_name($s)),"
\n"; } $p = 0; foreach $h (@hosts) { local ($s) = grep { $_->{'id'} == $h->{'id'} } @servers; local ($rh = "READ$p", $wh = "WRITE$p"); pipe($rh, $wh); if (!fork()) { close($rh); &remote_foreign_require($s->{'host'}, "acl", "acl-lib.pl"); if ($user_error_msg) { # Host is down print $wh &serialise_variable([ 0, $user_error_msg ]); exit; } # Save the .acl file local $cd = &remote_eval($s->{'host'}, "acl", '$config_directory'); &remote_foreign_call($s->{'host'}, "acl", "write_file", "$cd/$in{'_acl_mod'}/$who.acl", \%maccess); # Recursively update the ACL for all member users and groups if ($in{'_acl_group'}) { local ($group) = grep { $_->{'name'} eq $in{'_acl_group'} } @{$h->{'groups'}}; &remote_foreign_call($s->{'host'}, "acl", "set_acl_files", $h->{'users'}, $h->{'groups'}, $in{'_acl_mod'}, $group->{'members'}, \%maccess); } print $wh &serialise_variable([ 1 ]); exit; } close($wh); $p++; } # Read back the results $p = 0; foreach $h (@hosts) { local ($s) = grep { $_->{'id'} == $h->{'id'} } @servers; local $d = &server_name($s); local $rh = "READ$p"; local $line = <$rh>; local $rv = &unserialise_variable($line); close($rh); if ($rv && $rv->[0] == 1) { # It worked print &text('acl_success', $d),"\n"; } else { # Something went wrong print &text('acl_failed', $d, $rv->[1]),"\n"; } $p++; } print "
$text{'acl_done'}
\n"; &remote_finished(); &ui_print_footer("", $text{'index_return'}, $in{'_acl_user'} ? ( "edit_user.cgi?user=$in{'_acl_user'}&host=$in{'_acl_host'}", $text{'user_return'} ) : ( "edit_group.cgi?group=$in{'_acl_group'}&host=$in{'_acl_host'}", $text{'group_return'} ));