#!/bin/sh set -e HOOKS="${0}.d" for HOOK in "${HOOKS}"/* do if [ -x "${HOOK}" ] then "${HOOK}" "${@}" || true fi done