You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QA/tests/p_libxml2-python/0-install-libxml2-python.sh

12 lines
256 B

#!/bin/bash
# Author Dries Verachtert <dries.verachtert@dries.eu>
# Install libxml2-python
t_Log "Running $0 - installing libxml2-python."
if [ "$centos_ver" -ge 8 ] ; then
t_InstallPackage python3 python3-libxml2
else
t_InstallPackage libxml2-python
fi