Handle hostnames with upper-case letters
[webmin.git] / bandwidth / uninstall.pl
1 # uninstall.pl
2 # Called when webmin is uninstalled
3
4 require 'bandwidth-lib.pl';
5
6 sub module_uninstall
7 {
8 local $job = &find_cron_job();
9 if ($job) {
10         &lock_file(&cron::cron_file($job));
11         &cron::delete_cron_job($job);
12         &unlock_file(&cron::cron_file($job));
13         }
14 }
15
16 1;
17