File: uninstall.pl

package info (click to toggle)
webmin-cluster 1.180-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,124 kB
  • ctags: 97
  • sloc: perl: 8,823; makefile: 85; sh: 22
file content (15 lines) | stat: -rw-r--r-- 233 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# uninstall.pl
# Called when webmin is uninstalled

require 'cluster-cron-lib.pl';

sub module_uninstall
{
@jobs = &list_cluster_jobs();
foreach $j (sort { $b->{'line'} <=> $a->{'line'} } @jobs) {
	&delete_cluster_job($j);
	}
}

1;