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.
25 lines
520 B
25 lines
520 B
#!/bin/bash
|
|
|
|
|
|
if (t_GetPkgRel basesystem | grep -q el9)
|
|
then
|
|
t_Log "This is a C9 system. python38-mod_wsgi not present. Skipping."
|
|
t_CheckExitStatus 0
|
|
exit $PASS
|
|
fi
|
|
|
|
t_Log "Running $0 - removing python38-mod_wsgi"
|
|
|
|
if [[ $centos_ver -lt 8 ]]; then
|
|
t_Log "python38-mod_wsgi doesn't exist before CentOS 8 -> SKIP"
|
|
exit 0
|
|
fi
|
|
|
|
# TODO: remove after 8.2 rebuild
|
|
if [[ $centos_stream == "no" ]]; then
|
|
t_Log "python38-mod_wsgi is only in CentOS Stream -> SKIP"
|
|
exit 0
|
|
fi
|
|
|
|
t_RemovePackage python38-mod_wsgi
|