lemonldap-ng/debian/liblemonldap-ng-portal-perl.postinst
2012-11-03 05:58:20 +00:00

19 lines
363 B
Bash

#!/bin/bash
# Maintainer: #DEBHELPER#
set -e
. /usr/share/debconf/confmodule
BUILDPORTALWSDL=/usr/share/lemonldap-ng/bin/buildPortalWSDL
WSDLFILE=/var/lib/lemonldap-ng/portal/portal.wsdl
CAPTCHA_DIR=/var/lib/lemonldap-ng/portal/captcha_output
if [ "$1" == "configure" ]
then
$BUILDPORTALWSDL > $WSDLFILE || true
chown -R www-data:www-data $CAPTCHA_DIR
fi