mirror of
https://github.com/webmin/webmin.git
synced 2026-02-28 08:22:30 +00:00
18 lines
236 B
Perl
18 lines
236 B
Perl
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
require 'backup-config-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
foreach $backup (&list_backups()) {
|
|
$job = &find_cron_job($backup);
|
|
if ($job) {
|
|
&cron::delete_cron_job($job);
|
|
}
|
|
}
|
|
}
|
|
|
|
1;
|
|
|