updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / mod_auth_pgsql / mod_auth_pgsql.install
blob099614ce262b1f31f0f966564c5fcb83e6bced32
1 # arg 1:  the new package version
2 post_install() {
3   cat << EOM
5 --> Add the following line to the modules section of your apache config
6    LoadModule auth_pgsql_module modules/mod_auth_pgsql.so
7    
8 --> The following lines have to be in .htaccess file to use authentication.
9    AuthUserFile /dev/null
10    AuthBasicAuthoritative Off
11 EOM
12   /bin/true
15 # arg 1:  the new package version
16 # arg 2:  the old package version
17 post_upgrade() {
18   post_install $i
21 op=$1
22 shift
23 $op $*