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