#!/bin/bash
#
# Run all the post-install drop-ins from ./post-install.d
#

SELF=$(readlink -f $0)
DIR=$(dirname ${SELF})

DROPINS=$(find ${DIR}/post-install.d -type f -not -iname '*~' -not -iname '*.off' -not -iname '.*' | sort)

for x in ${DROPINS}; do
    ${x}
done
