I think this has gone missing on test nodes during unpuppeting. Add, as the gentoo job grabs some bz2 tarballs for extraction. Change-Id: Icb82930702124f7bf112b03a469d90d4163d398b
		
			
				
	
	
		
			35 lines
		
	
	
		
			698 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			698 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -eux
 | 
						|
set -o pipefail
 | 
						|
 | 
						|
sudo apt-get update || true
 | 
						|
sudo apt-get install -y --force-yes \
 | 
						|
        apt-transport-https \
 | 
						|
        bzip2 \
 | 
						|
        debootstrap \
 | 
						|
        docker.io \
 | 
						|
        inetutils-ping \
 | 
						|
        lsb-release \
 | 
						|
        kpartx \
 | 
						|
        python-lzma \
 | 
						|
        qemu-utils \
 | 
						|
        rpm \
 | 
						|
        uuid-runtime \
 | 
						|
        yum-utils || \
 | 
						|
    sudo yum -y install \
 | 
						|
        bzip2 \
 | 
						|
        debootstrap \
 | 
						|
        docker \
 | 
						|
        kpartx \
 | 
						|
        util-linux \
 | 
						|
        qemu-img || \
 | 
						|
    sudo emerge \
 | 
						|
        app-arch/bzip2 \
 | 
						|
        app-emulation/qemu \
 | 
						|
        dev-python/pyyaml \
 | 
						|
        sys-block/parted \
 | 
						|
        sys-fs/multipath-tools \
 | 
						|
        qemu-img \
 | 
						|
        yum-utils
 |