Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 56df6aeb16f0196736ea2463589972cc > files > 55

perl-Sys-Virt-5.2.0-1.mga7.armv7hl.rpm

# -*- perl -*-
use strict;
use warnings;
use Sys::Virt;

die "syntax: $0 URI DOMAIN-NAME\n" unless int(@ARGV) == 2;

my $uri = shift @ARGV;
my $domname = shift @ARGV;

print "Addr $uri\n";
my $con = Sys::Virt->new(address => $uri, readonly => 0);

my $dom = $con->get_domain_by_name($domname);

my @codes = (
    35, 18, 38, 38, 24,
    57,
    17, 24, 19, 38, 32,
    28,
    );

$dom->send_key(Sys::Virt::Domain::KEYCODE_SET_LINUX,
	       100,
	       \@codes);