diskimage-builder/elements/dib-python/pre-install.d/01-dib-python
Gregory Haynes d1e32f80a6 Run package-intalls with py3k if we must
Use dib-python to run package-installs using the provided python
version. Automatically detect the python version for our
package-installs-squash since that runs outside the chroot.

Change-Id: I926022bcf8cbcd81b051026ffd5d6477650045ad
2016-01-04 23:37:30 +00:00

16 lines
297 B
Bash
Executable File

#!/bin/bash
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
set -x
fi
set -eu
set -o pipefail
python_path=$(command -v python2 || command -v python3)
if [ -z "$python_path" ]; then
echo "Could not find python2 or python3 executable."
exit 1
fi
ln -s $python_path /usr/local/bin/dib-python