diff options
Diffstat (limited to 'pkgs/simpleid/simpleid.install')
-rw-r--r-- | pkgs/simpleid/simpleid.install | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/simpleid/simpleid.install b/pkgs/simpleid/simpleid.install new file mode 100644 index 0000000..3cfeae9 --- /dev/null +++ b/pkgs/simpleid/simpleid.install @@ -0,0 +1,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 +} |