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.
35 lines
756 B
35 lines
756 B
#!/bin/sh
|
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
|
|
|
t_Log "Running $0 - CentOS Anaconda patch is applied test."
|
|
|
|
uname_arch=$(uname -m)
|
|
if [ "$centos_ver" -eq "8" ]; then
|
|
t_Log "c8 => SKIPPING"
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$centos_ver" -eq "9" ]; then
|
|
t_Log "c9 => SKIPPING"
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$uname_arch" == "aarch64" ] || [ "$uname_arch" == "i686" ] || [ "$uname_arch" == "armv7l" ]; then
|
|
t_Log "*** Not testing on Arch: $uname_arch ***"
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$centos_ver" = "7" ];then
|
|
ANACONDA_PATH=/usr/lib64/python2.7/site-packages/pyanaconda/
|
|
ANACONDA_FILE="centos.py"
|
|
else
|
|
ANACONDA_PATH=/usr/lib/anaconda/
|
|
ANACONDA_FILE="rhel.py"
|
|
fi
|
|
|
|
|
|
grep "CentOS Linux" $ANACONDA_PATH/installclasses/$ANACONDA_FILE >/dev/null 2>&1
|
|
|
|
|
|
t_CheckExitStatus $?
|