Files
webmin/bandwidth/uninstall.pl
Jamie Cameron 9dbd5db2c9 Fix permissions
2009-07-20 23:42:32 -07:00

18 lines
264 B
Perl
Executable File

# uninstall.pl
# Called when webmin is uninstalled
require 'bandwidth-lib.pl';
sub module_uninstall
{
local $job = &find_cron_job();
if ($job) {
&lock_file(&cron::cron_file($job));
&cron::delete_cron_job($job);
&unlock_file(&cron::cron_file($job));
}
}
1;