mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-14 09:47:08 +00:00
Added QEMU install-root for python2 dependency
This commit is contained in:
parent
3283c58615
commit
d3c525dada
1 changed files with 13 additions and 0 deletions
13
qemu/install-root
Executable file
13
qemu/install-root
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
case "$DISTRI" in
|
||||
debian)
|
||||
;;
|
||||
archlinux)
|
||||
pacman -Syu --noconfirm --needed python2
|
||||
;;
|
||||
*)
|
||||
echo "Unsupported distribution"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
Loading…
Reference in a new issue