2017-05-12 21:20:22 +02:00

16 lines
304 B
Bash
Executable File

#!/bin/bash
# Execute extra binary hooks.
my_dir=$(dirname $(readlink -f ${0}))
extra_d=${my_dir}/extra
if [ ! -d ${my_dir}/extra ]; then
exit 0
fi
# Export the common functions to the extras
. config/functions
# Cleaner execution
/bin/run-parts --exit-on-error --regex ".*\.binary" "${extra_d}"