Files
webmin/cluster-shutdown/uninstall.pl
2014-07-06 08:32:25 -07:00

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;