mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
16 lines
193 B
Perl
16 lines
193 B
Perl
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
require 'cluster-shutdown-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
local $job = &find_cron_job();
|
|
if ($job) {
|
|
&cron::delete_cron_job($j);
|
|
}
|
|
}
|
|
|
|
1;
|
|
|