diff options
author | Sertonix <sertonix@posteo.net> | 2023-12-03 22:46:42 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2023-12-04 06:48:29 +0000 |
commit | eba6c56c4bdb448f11d2bb22e66f101b7604b51e (patch) | |
tree | 77662655e6fa8d01f396d888cdbb851a0e319fba | |
parent | ae19996b542034d96c96d2d98410078d6fb0b5fc (diff) | |
download | aports-eba6c56c4bdb448f11d2bb22e66f101b7604b51e.zip |
main/apache2-mod-wsgi: simplify post-install script
-rw-r--r-- | main/apache2-mod-wsgi/APKBUILD | 2 | ||||
-rw-r--r-- | main/apache2-mod-wsgi/apache2-mod-wsgi.post-install | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/main/apache2-mod-wsgi/APKBUILD b/main/apache2-mod-wsgi/APKBUILD index 709220d61df..54708ca6e8e 100644 --- a/main/apache2-mod-wsgi/APKBUILD +++ b/main/apache2-mod-wsgi/APKBUILD @@ -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" diff --git a/main/apache2-mod-wsgi/apache2-mod-wsgi.post-install b/main/apache2-mod-wsgi/apache2-mod-wsgi.post-install index 327b0156b9d..3f849f7e049 100644 --- a/main/apache2-mod-wsgi/apache2-mod-wsgi.post-install +++ b/main/apache2-mod-wsgi/apache2-mod-wsgi.post-install @@ -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 |