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.
12 lines
316 B
12 lines
316 B
#!/bin/bash
|
|
# Author Dries Verachtert <dries.verachtert@dries.eu>
|
|
|
|
# Install python-iniparse: required by yum so a quite important package in CentOS
|
|
t_Log "Running $0 - installing python-iniparse."
|
|
|
|
if [ "$centos_ver" -ge 8 ] ; then
|
|
t_InstallPackage python3 python3-iniparse
|
|
else
|
|
t_InstallPackage python-iniparse
|
|
fi
|