diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2006-09-22 06:31:17 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2006-09-22 06:31:17 +0000 |
commit | 041ef4ed723a86f6b6319d1be878dd5e73454d77 (patch) | |
tree | 4b704fc57fdf363dad9f0d5d6fe20d7c5956c78b /debian_edu-summary | |
parent | c14c90e28fd58bdac1a2b7886373915a6853e870 (diff) | |
download | sitesummary-041ef4ed723a86f6b6319d1be878dd5e73454d77.tar.gz sitesummary-041ef4ed723a86f6b6319d1be878dd5e73454d77.tar.bz2 sitesummary-041ef4ed723a86f6b6319d1be878dd5e73454d77.tar.xz |
* Quiet down debian_edu-summary runs for machines without the
Debian Edu config file.
Diffstat (limited to 'debian_edu-summary')
-rwxr-xr-x | debian_edu-summary | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian_edu-summary b/debian_edu-summary index 1f233f7..ad29a72 100755 --- a/debian_edu-summary +++ b/debian_edu-summary @@ -11,10 +11,10 @@ sub handle_host { my $hostid = shift; printf(" %-20s %5s\n", "debian-edu-profile", "count"); foreach ( get_debian_edu_profile ) { - printf(" %20s\n", "$_\n"); + printf(" %20s\n", $_ || "", "\n"); } printf(" %-20s %5s\n", "debian-edu-version", "count"); foreach ( get_debian_edu_ver ) { - printf(" %20s\n", "$_\n"); + printf(" %20s\n", $_ || "", "\n"); } } |