mirror of
https://github.com/webmin/webmin.git
synced 2025-08-16 14:51:18 +00:00
20 lines
262 B
Perl
Executable File
20 lines
262 B
Perl
Executable File
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'redefine';
|
|
no warnings 'uninitialized';
|
|
require 'servers-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
my $job = &find_cron_job();
|
|
if ($job) {
|
|
&cron::delete_cron_job($job);
|
|
}
|
|
}
|
|
|
|
1;
|
|
|