#!/bin/bash # Set default values for environment variables if they are not provided LDAP_ROOTPASS=${LDAP_ROOTPASS:-123} LDAP_ORGANISATION=${LDAP_ORGANISATION:-example} LDAP_DOMAIN=${LDAP_DOMAIN:-exmaple.com} # Function to handle SIGTERM terminate() { echo "Termination signal received, shutting down slapd..." slapd_stop exit 0 } # Function to start slapd in the background slapd_start() { ulimit -n 1024 slapd -h "ldap:/// ldapi:///" -u openldap -g openldap -d 1 & SLAPD_PID=$! } # Function to stop slapd slapd_stop() { kill -TERM "$SLAPD_PID" wait "$SLAPD_PID" } # Set trap for SIGTERM trap 'terminate' SIGTERM SIGINT cat <