[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTest Nested v12 06/21] Add new function of 'host_install_postboot_complete'
This function is called to add 'osstest-confirm-booted' service in target's start up services. Previously, this was dircetly done by target_cmd_root($ho, "update-rc.d osstest-confirm-booted start 99 2 .") Here wrapper it because more than one place (ts-host-install and ts-nested-setup) will need this, so wrapper it to avoid open code. Signed-off-by: Robert Ho <robert.hu@xxxxxxxxx> --- Osstest/TestSupport.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm index b7963af..f2ec9be 100644 --- a/Osstest/TestSupport.pm +++ b/Osstest/TestSupport.pm @@ -115,6 +115,7 @@ BEGIN { iso_gen_flags_basic iso_copy_content_from_image guest_editconfig_nocd + host_install_postboot_complete ); %EXPORT_TAGS = ( ); @@ -2373,4 +2374,9 @@ sub guest_editconfig_nocd ($$) { }); } +sub host_install_postboot_complete ($) { + my ($ho) = @_; + target_cmd_root($ho, "update-rc.d osstest-confirm-booted start 99 2 ."); +} + 1; -- 1.8.3.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |