1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-14 19:59:55 +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 pkgname=apache2-mod-wsgi
_realname=mod_wsgi _realname=mod_wsgi
pkgver=4.9.4 pkgver=4.9.4
pkgrel=2 pkgrel=3
pkgdesc="Python WSGI Module for Apache2" pkgdesc="Python WSGI Module for Apache2"
url="https://github.com/GrahamDumpleton/mod_wsgi" url="https://github.com/GrahamDumpleton/mod_wsgi"
arch="all" arch="all"

View file

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