Added QEMU install-root for python2 dependency

This commit is contained in:
Michael Rodler 2016-05-04 19:56:30 +02:00
parent 3283c58615
commit d3c525dada

13
qemu/install-root Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash -e
case "$DISTRI" in
debian)
;;
archlinux)
pacman -Syu --noconfirm --needed python2
;;
*)
echo "Unsupported distribution"
exit 1
;;
esac