mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
20 lines
268 B
Perl
Executable File
20 lines
268 B
Perl
Executable File
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
use strict;
|
|
use warnings;
|
|
require 'backup-config-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
foreach my $backup (&list_backups()) {
|
|
my $job = &find_cron_job($backup);
|
|
if ($job) {
|
|
&cron::delete_cron_job($job);
|
|
}
|
|
}
|
|
}
|
|
|
|
1;
|
|
|