#!/usr/bin/perl # delete_mod.cgi # Delete a module from one or all servers, after asking for confirmation require './cluster-webmin-lib.pl'; &ReadParse(); @servers = &list_servers(); @hosts = &list_webmin_hosts(); if ($in{'server'} < 0) { # Find servers that have the module or theme foreach $h (@hosts) { foreach $m (@{$h->{'modules'}}, @{$h->{'themes'}}) { if ($m->{'dir'} eq $in{'mod'}) { local ($s) = grep { $_->{'id'} == $h->{'id'} } @servers; push(@got, $s); $gotmap{$s} = $h; $best = $s if (!$s->{'id'}); last; } } } $s = $best ? $best : $got[0]; } else { ($s) = grep { $_->{'id'} == $in{'server'} } @servers; ($h) = grep { $_->{'id'} == $in{'server'} } @hosts; @got = ( $s ); $gotmap{$s} = $h; } $h = $gotmap{$s}; foreach $m ($in{'type'} eq 'mod' ? @{$h->{'modules'}} : @{$h->{'themes'}}) { $info = $m if ($m->{'dir'} eq $in{'mod'}); } # Setup error handler for down hosts sub del_error { $del_error_msg = join("", @_); } &remote_error_setup(\&del_error); &remote_foreign_require($s->{'host'}, "webmin", "webmin-lib.pl"); &ui_print_header(undef, $text{'delete_title'}, ""); if ($in{'sure'}) { # do the deletion in separate processes print "<br><b>",&text("delete_header_$in{'type'}", $info->{'desc'}),"</b><p>\n"; $p = 0; foreach $g (@got) { local ($rh = "READ$p", $wh = "WRITE$p"); pipe($rh, $wh); if (!fork()) { close($rh); local $h = $gotmap{$g}; # Check for any dependencies on this host foreach $m (@{$h->{'modules'}}) { foreach $d (split(/\s+/, $m->{'depends'})) { push(@{$ondeps{$d}}, $m); } } if ($ondeps{$in{'mod'}}) { print $wh &serialise_variable([ 0, &text('delete_edepends', join(", ", map { $_->{'desc'} } @{$ondeps{$in{'mod'}}})) ]); exit; } # Delete the module &remote_foreign_require($g->{'host'}, "webmin", "webmin-lib.pl") if ($s ne $g); &remote_foreign_require($g->{'host'}, "acl", "acl-lib.pl"); local $desc = &remote_foreign_call($g->{'host'}, "webmin", "delete_webmin_module", $in{'mod'}, $in{'acls'}); if ($del_error_msg) { print $wh &serialise_variable([ 0, $del_error_msg ]); } elsif ($desc) { print $wh &serialise_variable([ 1, $desc ]); } else { print $wh &serialise_variable([ 0, $text{'delete_egone'} ]); } # Re-request all users and groups from the server local @newmods = grep { $_->{'dir'} ne $in{'mod'} } @{$h->{'modules'}}; local @newthemes = grep { $_->{'dir'} ne $in{'mod'} } @{$h->{'themes'}}; $h->{'modules'} = \@newmods; $h->{'themes'} = \@newthemes; $h->{'users'} = [ &remote_foreign_call($g->{'host'}, "acl", "list_users") ]; $h->{'groups'} = [ &remote_foreign_call($g->{'host'}, "acl", "list_groups") ]; &save_webmin_host($h); close($wh); exit; } close($wh); $p++; } # Read back the results $p = 0; foreach $g (@got) { local $rh = "READ$p"; local $line = <$rh>; local $rv = &unserialise_variable($line); close($rh); local $d = &server_name($g); if (!$rv->[0]) { print &text('delete_error', $d, $rv->[1]),"<br>\n"; } else { print &text('delete_success', $d, $rv->[1]),"<br>\n"; } $p++; } print "<p><b>$text{'delete_done'}</b><p>\n"; } else { # Ask if the user is sure.. $rroot = &remote_eval($s->{'host'}, "webmin", '$root_directory'); $sz = &remote_foreign_call($s->{'host'}, "webmin", "disk_usage_kb", "$rroot/$in{'mod'}"); print "<center>\n"; if ($in{'server'} < 0) { print &text("delete_rusure_$in{'type'}", "<b>$info->{'desc'}</b>", $sz),"<p>\n"; } else { print &text("delete_rusure2_$in{'type'}", "<b>$info->{'desc'}</b>", $sz, &server_name($s)),"<p>\n"; } print "<form action=delete_mod.cgi>\n"; print "<input type=hidden name=mod value=\"$in{'mod'}\">\n"; print "<input type=hidden name=type value=\"$in{'type'}\">\n"; print "<input type=hidden name=server value=\"$in{'server'}\">\n"; print "<input type=hidden name=sure value=1>\n"; print "<input type=submit value=\"$text{'delete_ok'}\"><br>\n"; print "<input type=checkbox name=acls value=1> $text{'delete_acls'}\n"; print "</center></form>\n"; } &remote_finished(); &ui_print_footer("", $text{'index_return'});
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
help | Folder | 0755 |
|
|
images | Folder | 0755 |
|
|
lang | Folder | 0755 |
|
|
CHANGELOG | File | 1.05 KB | 0644 |
|
add.cgi | File | 2.48 KB | 0755 |
|
cluster-webmin-lib.pl | File | 7.29 KB | 0755 |
|
config | File | 25 B | 0644 |
|
config.info | File | 108 B | 0644 |
|
config.info.ca | File | 137 B | 0644 |
|
config.info.cs | File | 79 B | 0644 |
|
config.info.de | File | 125 B | 0644 |
|
config.info.es | File | 75 B | 0644 |
|
config.info.fr | File | 134 B | 0644 |
|
config.info.hr | File | 0 B | 0644 |
|
config.info.hu | File | 0 B | 0644 |
|
config.info.ms | File | 131 B | 0644 |
|
config.info.nl | File | 131 B | 0644 |
|
config.info.no | File | 127 B | 0644 |
|
config.info.pl | File | 122 B | 0644 |
|
create_group.cgi | File | 3.11 KB | 0755 |
|
create_user.cgi | File | 3.95 KB | 0755 |
|
delete_group.cgi | File | 3.22 KB | 0755 |
|
delete_host.cgi | File | 248 B | 0755 |
|
delete_mod.cgi | File | 4.17 KB | 0755 |
|
delete_user.cgi | File | 2.15 KB | 0755 |
|
edit_acl.cgi | File | 3.94 KB | 0755 |
|
edit_config.cgi | File | 2.13 KB | 0755 |
|
edit_group.cgi | File | 6.35 KB | 0755 |
|
edit_host.cgi | File | 4.46 KB | 0755 |
|
edit_mod.cgi | File | 7 KB | 0755 |
|
edit_user.cgi | File | 8.96 KB | 0755 |
|
group_form.cgi | File | 2.98 KB | 0755 |
|
index.cgi | File | 9.46 KB | 0755 |
|
install.cgi | File | 7.68 KB | 0755 |
|
module.info | File | 227 B | 0644 |
|
module.info.af | File | 0 B | 0644 |
|
module.info.af.auto | File | 185 B | 0644 |
|
module.info.ar | File | 0 B | 0644 |
|
module.info.ar.auto | File | 279 B | 0644 |
|
module.info.be | File | 0 B | 0644 |
|
module.info.be.auto | File | 304 B | 0644 |
|
module.info.bg | File | 0 B | 0644 |
|
module.info.bg.auto | File | 306 B | 0644 |
|
module.info.ca | File | 178 B | 0644 |
|
module.info.ca.auto | File | 23 B | 0644 |
|
module.info.cs | File | 33 B | 0644 |
|
module.info.cs.auto | File | 158 B | 0644 |
|
module.info.da | File | 0 B | 0644 |
|
module.info.da.auto | File | 192 B | 0644 |
|
module.info.de | File | 160 B | 0644 |
|
module.info.de.auto | File | 23 B | 0644 |
|
module.info.el | File | 0 B | 0644 |
|
module.info.el.auto | File | 345 B | 0644 |
|
module.info.es | File | 36 B | 0644 |
|
module.info.es.auto | File | 162 B | 0644 |
|
module.info.eu | File | 0 B | 0644 |
|
module.info.eu.auto | File | 191 B | 0644 |
|
module.info.fa | File | 0 B | 0644 |
|
module.info.fa.auto | File | 256 B | 0644 |
|
module.info.fi | File | 0 B | 0644 |
|
module.info.fi.auto | File | 190 B | 0644 |
|
module.info.fr | File | 35 B | 0644 |
|
module.info.fr.auto | File | 183 B | 0644 |
|
module.info.he | File | 0 B | 0644 |
|
module.info.he.auto | File | 240 B | 0644 |
|
module.info.hr | File | 0 B | 0644 |
|
module.info.hr.auto | File | 193 B | 0644 |
|
module.info.hu | File | 33 B | 0644 |
|
module.info.hu.auto | File | 185 B | 0644 |
|
module.info.it | File | 0 B | 0644 |
|
module.info.it.auto | File | 183 B | 0644 |
|
module.info.ja | File | 0 B | 0644 |
|
module.info.ja.auto | File | 256 B | 0644 |
|
module.info.ko | File | 0 B | 0644 |
|
module.info.ko.auto | File | 195 B | 0644 |
|
module.info.lt | File | 0 B | 0644 |
|
module.info.lt.auto | File | 206 B | 0644 |
|
module.info.lv | File | 0 B | 0644 |
|
module.info.lv.auto | File | 197 B | 0644 |
|
module.info.ms | File | 151 B | 0644 |
|
module.info.ms.auto | File | 23 B | 0644 |
|
module.info.mt | File | 0 B | 0644 |
|
module.info.mt.auto | File | 188 B | 0644 |
|
module.info.nl | File | 33 B | 0644 |
|
module.info.nl.auto | File | 155 B | 0644 |
|
module.info.no | File | 32 B | 0644 |
|
module.info.no.auto | File | 153 B | 0644 |
|
module.info.pl | File | 168 B | 0644 |
|
module.info.pl.auto | File | 23 B | 0644 |
|
module.info.pt | File | 0 B | 0644 |
|
module.info.pt.auto | File | 196 B | 0644 |
|
module.info.pt_BR | File | 0 B | 0644 |
|
module.info.pt_BR.auto | File | 205 B | 0644 |
|
module.info.ro | File | 0 B | 0644 |
|
module.info.ro.auto | File | 189 B | 0644 |
|
module.info.ru | File | 0 B | 0644 |
|
module.info.ru.auto | File | 320 B | 0644 |
|
module.info.sk | File | 0 B | 0644 |
|
module.info.sk.auto | File | 199 B | 0644 |
|
module.info.sl | File | 0 B | 0644 |
|
module.info.sl.auto | File | 186 B | 0644 |
|
module.info.sv | File | 0 B | 0644 |
|
module.info.sv.auto | File | 186 B | 0644 |
|
module.info.th | File | 0 B | 0644 |
|
module.info.th.auto | File | 403 B | 0644 |
|
module.info.tr | File | 0 B | 0644 |
|
module.info.tr.auto | File | 204 B | 0644 |
|
module.info.uk | File | 0 B | 0644 |
|
module.info.uk.auto | File | 328 B | 0644 |
|
module.info.ur | File | 0 B | 0644 |
|
module.info.ur.auto | File | 287 B | 0644 |
|
module.info.vi | File | 0 B | 0644 |
|
module.info.vi.auto | File | 215 B | 0644 |
|
module.info.zh | File | 0 B | 0644 |
|
module.info.zh.auto | File | 160 B | 0644 |
|
module.info.zh_TW | File | 0 B | 0644 |
|
module.info.zh_TW.auto | File | 169 B | 0644 |
|
prefs.info | File | 28 B | 0644 |
|
refresh.cgi | File | 4.08 KB | 0755 |
|
save_acl.cgi | File | 3.33 KB | 0755 |
|
save_config.cgi | File | 1.33 KB | 0755 |
|
save_group.cgi | File | 4.54 KB | 0755 |
|
save_user.cgi | File | 5.24 KB | 0755 |
|
sync.cgi | File | 4 KB | 0755 |
|
sync_form.cgi | File | 1.8 KB | 0755 |
|
update.cgi | File | 4.1 KB | 0755 |
|
upgrade.cgi | File | 15.26 KB | 0755 |
|
user_form.cgi | File | 4.5 KB | 0755 |
|