DebianMirrorSubpath debian
TestHostKeypairPath id_rsa_osstest
- HostProp_GenEtherBase 5e:36:0e:f5:95:9c
+ HostProp_GenEtherPrefixBase 5e:36:0e:f5
HostDiskBoot 300
HostDiskRoot 10000
return $ether if defined $ether;
db_retry($flight,'running', $dbh_tests,[qw(flights)], sub {
- my $prefix = get_host_property($ho, 'gen-ether-base');
+ my $prefix = get_host_property($ho, 'gen-ether-prefix-base');
$prefix =~ m/^(\w+:\w+):(\w+):(\w+)$/ or die "$prefix ?";
my $lhs = $1;
my $pv = (hex($1)<<8) | (hex($2));
}
my $sth= $dbh_tests->prepare(<<END);
- SELECT name FROM runvars WHERE flight=$flight AND job='$job'
+ SELECT name FROM runvars WHERE flight=? AND job=?
AND name LIKE '%_domname'
ORDER BY name
END
- $sth->execute();
+ $sth->execute($flight, $job);
my $row;
while ($row= $sth->fetchrow_hashref) {
my $gn= $row->{name};