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.
49 lines
1.1 KiB
49 lines
1.1 KiB
10 months ago
|
#!/bin/bash
|
||
|
|
||
|
t_Log "Running $0 - Apache httpd python38-mod_wsgi is functional"
|
||
|
|
||
|
|
||
|
if (t_GetPkgRel basesystem | grep -q el9)
|
||
|
then
|
||
|
t_Log "This is a C9 system. python3-mod_wsgi not present. Skipping."
|
||
|
t_CheckExitStatus 0
|
||
|
exit $PASS
|
||
|
fi
|
||
|
|
||
|
|
||
|
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
|
||
|
|
||
|
cat > /etc/httpd/conf.d/tfapp.conf << EOF
|
||
|
WSGIScriptAlias /tfapp /var/www/html/tfapp.wsgi
|
||
|
EOF
|
||
|
|
||
|
cat > /var/www/html/tfapp.wsgi << EOF
|
||
|
def application(environ, start_response):
|
||
|
status = '200 OK'
|
||
|
output = 't_functional_mod_wsgi_test'.encode()
|
||
|
response_headers = [
|
||
|
('Content-type', 'text/plain'),
|
||
|
('Content-Length', str(len(output)))
|
||
|
]
|
||
|
start_response(status, response_headers)
|
||
|
return [output]
|
||
|
EOF
|
||
|
|
||
|
systemctl restart httpd
|
||
|
|
||
|
curl -s http://localhost/tfapp | grep -q 't_functional_mod_wsgi_test'
|
||
|
t_CheckExitStatus $?
|
||
|
|
||
|
systemctl stop httpd
|
||
|
|
||
|
rm /etc/httpd/conf.d/tfapp.conf /var/www/html/tfapp.wsgi
|