1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-13 11:19:50 +03:00

main/apache2-mod-wsgi: simplify post-install script

This commit is contained in:
Sertonix 2023-12-03 22:46:42 +00:00 committed by Kevin Daudt
parent ae19996b54
commit eba6c56c4b
2 changed files with 9 additions and 7 deletions

View file

@ -3,7 +3,7 @@
pkgname=apache2-mod-wsgi
_realname=mod_wsgi
pkgver=4.9.4
pkgrel=2
pkgrel=3
pkgdesc="Python WSGI Module for Apache2"
url="https://github.com/GrahamDumpleton/mod_wsgi"
arch="all"

View file

@ -1,10 +1,12 @@
#!/bin/sh
echo "*" >&2
echo "* To finish installing apache2-mod-wsgi:" >&2
echo "* 1) See if you need to modify the apache2 config:" >&2
echo "* /etc/apache2/conf.d/wsgi-module.conf" >&2
echo "* 2) Restart apache2 when done." >&2
echo "*" >&2
cat <<EOF >&2
*
* To finish installing apache2-mod-wsgi:
* 1) See if you need to modify the apache2 config:
* /etc/apache2/conf.d/wsgi-module.conf
* 2) Restart apache2 when done.
*
EOF
exit 0