mirror of
https://github.com/webmin/webmin.git
synced 2026-02-07 07:52:13 +00:00
18 lines
209 B
Perl
Executable File
18 lines
209 B
Perl
Executable File
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
use strict;
|
|
use warnings;
|
|
require 'servers-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
my $job = &find_cron_job();
|
|
if ($job) {
|
|
&cron::delete_cron_job($job);
|
|
}
|
|
}
|
|
|
|
1;
|
|
|