blob: 488ef93defdbb4223d162d7c5c0c2a88fdf52df4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
cd /tmp
npm install python-utils
echo
echo "Now don't forget to edit your main config and add"
echo " LoadModule python_module /usr/lib/httpd/modules/mod_python.so"
echo "and if your configuration uses ClearModuleList, then also"
echo " AddModule mod_python.c"
echo
}
|