[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH v1.1 7/7] ts-debian-fixup: Install the overlays
We want debootstrap-installed guests to get these overlays too. Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- v2: Use a tmpfile rather than a stashfile for the tarball. --- ts-debian-fixup | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ts-debian-fixup b/ts-debian-fixup index 6d24587..75c93e3 100755 --- a/ts-debian-fixup +++ b/ts-debian-fixup @@ -19,6 +19,7 @@ use strict qw(vars); use DBI; use Osstest; use Osstest::TestSupport; +use Osstest::Debian; tsreadconfig(); @@ -64,6 +65,17 @@ sub access () { END } +sub overlay ($$) { + my ($srcdir, $tfilename) = @_; + + my $fh = IO::File::new_tmpfile() or die $!; + contents_make_cpio($fh,'ustar',$srcdir); + seek $fh,0,0 or die "$!"; + target_cmd_inputfh_root($ho, $fh, <<END); + tar -C $mountpoint -xf - +END +} + our $extra; sub console () { @@ -175,6 +187,7 @@ savecfg(); ether(); target_kernkind_check($gho); access(); +debian_overlays(\&overlay); console(); filesystems(); otherfixupcfg(); -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |