blob: 3cfeae9f0406113f1d0dceb45156983541a66662 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install(){
echo "Generating /openid..."
ln -s /usr/share/webapps/simpleid/www /srv/http/openid
echo "Don't forget to set your hostname in /src/http/openid/config.inc"
echo "Also you must add /etc/webapps and /usr/share/webapps into"
echo "php.ini's open_basedir directive."
}
post_remove(){
echo "Removing soft links..."
rm /srv/http/openid
}
|