We're discussing the solutions without asking the most important person here. Aapo, what's your idea for handling these pycentral-created modules that exist in /usr/lib/python2.7 ?
case "$1" in install) if [ -e /usr/lib/python2.7 ] && \ [ ! -L /usr/lib/python2.7 ]; then echo "/usr/lib/python2.7 should not be a regoular directory before python2.7-minimal installation. Please clean it." exit 1 fi
case "$1" in install) if [ -e /usr/lib/python2.7 ] && \ [ ! -L /usr/lib/python2.7 ]; then # /opt/python27/lib really shouldn't exists if [ -e /opt/python27/lib ]; then exit 1; fi mkdir -p /opt/python27 mv -i /usr/lib/python2.7 /opt/python27/lib fi