#!/bin/sh set -e # main action="$1" case $action in pre-cpkg) LIB_FILE="/usr/share/lliurex/llxcfg-ldap/common.sh" [ -e $LIB_FILE ] || exit 1 . $LIB_FILE we_have_all_the_ingredients > /dev/null 2>/dev/null building_base_dn > /dev/null 2>/dev/null building_ldap_vars > /dev/null 2>/dev/null ;; *) exit 0 ;; esac exit 0