mirror of
https://github.com/webmin/webmin.git
synced 2026-02-10 17:22:04 +00:00
16 lines
186 B
Perl
16 lines
186 B
Perl
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
require 'servers-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
local $job = &find_cron_job();
|
|
if ($job) {
|
|
&cron::delete_cron_job($job);
|
|
}
|
|
}
|
|
|
|
1;
|
|
|