When install-pak (called from install-rkt.sh) fails at some point
abort packaging.
This is based on a discussion in
https://github.com/coreos/rkt/pull/3127#discussion-diff-76763179 where
it was agreed upon that aborting on unexpected failures would be
desirable.
Checkinstall (or rather installwatch) hooks into the mkdir process of
install and prefixes the given paths while creating them. Since mkdir
does a chdir($dir) after the process of creating the named directories
it detects, that the creation must have failed and bails. The
install-pak script continues with the next file in the list which is
placed in the fake directory as expected and doesn't fail since the
directory exists in the prefixed dir. Thus the first file in the loop is
missing from the prefix dir.
This is fixed with creating each directory that is required before the
normal install routine continues.
Fixes#3123
Currently to get started with rkt we recommend using "vagrant up". This
tries to build rkt inside a virtual machine.
This cleans up the install-vagrant.sh script to use a released version
of rkt instead.
It also removes scripts not being used any more.
Fixes#2789