mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
22 lines
330 B
Perl
Executable File
22 lines
330 B
Perl
Executable File
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'redefine';
|
|
no warnings 'uninitialized';
|
|
require 'time-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
# Remove the cron job for scheduled checking
|
|
&foreign_require("cron");
|
|
my $job = &find_cron_job();
|
|
if ($job) {
|
|
&cron::delete_cron_job($job);
|
|
}
|
|
}
|
|
|
|
1;
|
|
|