Remove whitespace around hostname
Robert 'phaylon' Sedlacek [Mon, 21 May 2012 22:30:30 +0000 (22:30 +0000)]
lib/System/Introspector/Host.pm

index 0cc0658..6fd49ca 100644 (file)
@@ -45,6 +45,7 @@ sub _gather_hostname {
     my ($self) = @_;
     my $hostname = output_from_file '/etc/hostname';
     chomp $hostname;
+    $hostname =~ s{(?:^\s+|\s+$)}{}g;
     return $hostname;
 }