#!/bin/sh

for FILE in /etc/ldap/schema/*.ldif
do
  ldapadd -Y EXTERNAL -H ldapi:/// -f "$FILE"
done
