aboutsummaryrefslogtreecommitdiffstats
path: root/debian_edu-summary
blob: a2c73db77f89dff2f8f87daeb6a25aac54d91ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl -w

use strict;

use SiteSummary;

#for_all_hosts(\&handle_host);

handle_host();
sub handle_host {
    my $hostid = shift;
    printf("  %-20s %5s\n", "debian-edu-version", "count");
    foreach ( get_debian_edu_profile ) {
    printf(" %20s\n", "$_\n");
    }
}