lemonldap-ng/debian/liblemonldap-ng-portal-perl.postinst

19 lines
315 B
Plaintext
Raw Normal View History

#!/bin/bash
set -e
. /usr/share/debconf/confmodule
BUILDPORTALWSDL=/usr/share/lemonldap-ng/bin/buildPortalWSDL
WSDLFILE=/var/lib/lemonldap-ng/portal/portal.wsdl
2012-11-03 06:58:20 +01:00
CAPTCHA_DIR=/var/lib/lemonldap-ng/portal/captcha_output
if [ "$1" == "configure" ]
then
$BUILDPORTALWSDL > $WSDLFILE || true
fi
#DEBHELPER#
2012-12-02 10:17:30 +01:00
exit 0