2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[#899] removed unused script

This commit is contained in:
Razvan Becheriu
2021-01-30 10:07:03 +02:00
parent acac9f47cd
commit f8a6e36a21

View File

@@ -1,17 +0,0 @@
if test ${#} -lt 2; then
echo "Usage: ${0} script_name function_name"
echo " All variables used by the script must be available"
echo " as environment variables."
echo " All variables specified in the 'hook_parameters'"
echo " variable will be printed to stdout."
exit 1
fi
script_name=${1}
function_name=${2}
source ${script_name} ${function_name}
for parameter in ${hook_parameters}; do
echo "${parameter}=${!parameter}"
done