Handle hostnames with upper-case letters
[webmin.git] / backup-config / uninstall.pl
1 # uninstall.pl
2 # Called when webmin is uninstalled
3
4 use strict;
5 use warnings;
6 require 'backup-config-lib.pl';
7
8 sub module_uninstall
9 {
10 foreach my $backup (&list_backups()) {
11         my $job = &find_cron_job($backup);
12         if ($job) {
13                 &cron::delete_cron_job($job);
14                 }
15         }
16 }
17
18 1;
19