mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
14 lines
324 B
Text
14 lines
324 B
Text
|
# arg 1: the new package version
|
||
|
post_install() {
|
||
|
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
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|