mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
18 lines
230 B
Perl
Executable File
18 lines
230 B
Perl
Executable File
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
require 'cluster-copy-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
foreach $copy (&list_copies()) {
|
|
$job = &find_cron_job($copy);
|
|
if ($job) {
|
|
&cron::delete_cron_job($job);
|
|
}
|
|
}
|
|
}
|
|
|
|
1;
|
|
|