mirror of
https://github.com/webmin/webmin.git
synced 2025-08-16 14:51:18 +00:00
16 lines
233 B
Perl
Executable File
16 lines
233 B
Perl
Executable File
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
require 'cluster-cron-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
@jobs = &list_cluster_jobs();
|
|
foreach $j (sort { $b->{'line'} <=> $a->{'line'} } @jobs) {
|
|
&delete_cluster_job($j);
|
|
}
|
|
}
|
|
|
|
1;
|
|
|