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.
|
#!/bin/bash
|
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
|
|
|
uname_arch=$(uname -m)
|
|
if [ "$centos_ver" -eq "8" ]; then
|
|
t_Log "c8 => SKIPPING"
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$uname_arch" == "armv7l" ]; then
|
|
t_Log "*** Not testing on Arch: $uname_arch ***"
|
|
exit 0
|
|
fi
|
|
|
|
t_InstallPackage anaconda
|