@@ -179,6 +179,7 @@ our @accessible_runvar_pats =
host_linux_boot_append *_host_linux_boot_append
host_ip *_host_ip
host_power_install *_host_power_install
+ host_xenstored *_host_xenstored
);
#---------- test script startup ----------
@@ -142,6 +142,13 @@ sub adjustconfig () {
(
"XENCONSOLED_TRACE" => "guest",
);
+
+ my $xenstored = target_var($ho, 'xenstored');
+ if (defined $xenstored) {
+ $xenstored = "/usr/local/sbin/$xenstored" unless $xenstored =~ m{/};
+ push @commons_config, "XENSTORED", $xenstored;
+ }
+
target_editfile_root($ho, $commons_config_file,
sub { target_editfile_kvp_replace(@commons_config) });
Nothing sets this yet. Signed-off-by: Ian Jackson <iwj@xenproject.org> --- Osstest/TestSupport.pm | 1 + ts-xen-install | 7 +++++++ 2 files changed, 8 insertions(+)