mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 14:13:29 +00:00
17 lines
226 B
Perl
Executable File
17 lines
226 B
Perl
Executable File
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
require 'quota-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
&foreign_require("cron", "cron-lib.pl");
|
|
local $job = &find_email_job();
|
|
if ($job) {
|
|
&cron::delete_cron_job($job);
|
|
}
|
|
}
|
|
|
|
1;
|
|
|