Add support for deployment on Ubuntu releases where python2 is not installed by default

This commit is contained in:
james.page@ubuntu.com 2015-09-23 09:20:15 +01:00
commit 9b4e62908d
3 changed files with 22 additions and 2 deletions

View File

@ -76,7 +76,7 @@ def install_upstart_scripts():
shutil.copy(x, '/etc/init/')
@hooks.hook('install')
@hooks.hook('install.real')
def install():
execd_preinstall()
add_source(config('source'), config('key'))

View File

@ -1 +0,0 @@
hooks.py

20
hooks/install Executable file
View File

@ -0,0 +1,20 @@
#!/bin/bash
# Wrapper to deal with newer Ubuntu versions that don't have py2 installed
# by default.
declare -a DEPS=('apt' 'netaddr' 'netifaces' 'pip' 'yaml')
check_and_install() {
pkg="${1}-${2}"
if ! dpkg -s ${pkg} 2>&1 > /dev/null; then
apt-get -y install ${pkg}
fi
}
PYTHON="python"
for dep in ${DEPS[@]}; do
check_and_install ${PYTHON} ${dep}
done
exec ./hooks/install.real

1
hooks/install.real Symbolic link
View File

@ -0,0 +1 @@
hooks.py