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

17 lines
258 B
Bash

#!/bin/bash
set -e
. /usr/share/debconf/confmodule
BUILDPORTALWSDL=/usr/share/lemonldap-ng/bin/buildPortalWSDL
WSDLFILE=/var/lib/lemonldap-ng/portal/portal.wsdl
if [ "$1" == "configure" ]
then
$BUILDPORTALWSDL > $WSDLFILE || true
fi
#DEBHELPER#
exit 0