#!/bin/bash

dirserv_prefs="/Library/Preferences/com.apple.openldap.plist"
slapconfig_path="/usr/sbin/slapconfig"

if [ ! -f "${dirserv_prefs}" ]; then
exit 0;
fi

if [ ! -x "${slapconfig_path}" ]; then
exit 1;
fi

${slapconfig_path} -firstboot
