zapret/common/custom.sh

38 lines
603 B
Bash
Raw Normal View History

2024-10-28 11:32:24 +05:00
custom_runner()
{
# $1 - function name
# $2+ - params
local n script FUNC=$1
shift
[ -d "$CUSTOM_DIR/custom.d" ] && {
2024-10-25 16:29:47 +05:00
dir_is_not_empty "$CUSTOM_DIR/custom.d" && {
2024-10-28 11:32:24 +05:00
for script in "$CUSTOM_DIR/custom.d/"*; do
2024-10-13 15:25:19 +05:00
[ -f "$script" ] || continue
2024-10-28 11:32:24 +05:00
unset -f $FUNC
. "$script"
existf $FUNC && $FUNC "$@"
done
}
}
}
alloc_tpws_port()
{
# $1 - target var name
alloc_num NUMPOOL_TPWS_PORT $1 910 979
}
alloc_qnum()
{
# $1 - target var name
alloc_num NUMPOOL_QNUM $1 65400 65499
}
alloc_dnum()
{
# alloc daemon number
# $1 - target var name
alloc_num NUMPOOL_DNUM $1 1000 1999
}