Update
[virt-tools.git] / tools / virt-uname.pl
index 70bbd34..9a383bb 100755 (executable)
@@ -384,6 +384,8 @@ IP network.  Other transports are possible, including "vmchannel"
 host-guest communication channels implemented in different ways by
 different hypervisors).
 
+The transport is written to C<$GUESTCOMMSDIR/transport>.
+
 =head1 HOST ARCHITECTURE
 
 On the host side, the host uses L<libguestfs(3)> to read the guest's
@@ -459,7 +461,7 @@ sub get_key
 
     open PIPE, "$cmd |" or die "$cmd: $!";
     my $line = <PIPE>;
-    die "no response from virt-tools-get-key\n" unless $line;
+    die __"no response from virt-tools-get-key\n" unless $line;
     chomp $line;
     close PIPE;
 
@@ -513,7 +515,7 @@ sub get_transport
 
     open PIPE, "$cmd |" or die "$cmd: $!";
     my $line = <PIPE>;
-    die "no response from virt-tools-get-transport\n" unless $line;
+    die __"no response from virt-tools-get-transport\n" unless $line;
     chomp $line;
     close PIPE;