mirror of
https://github.com/limosek/zaf.git
synced 2024-11-13 05:59:06 +01:00
158 lines
3.9 KiB
Bash
158 lines
3.9 KiB
Bash
# Control file related functions
|
|
|
|
# Get item list from control on stdin
|
|
zaf_ctrl_get_items() {
|
|
grep '^Item ' | cut -d ' ' -f 2 | cut -d ':' -f 1 | tr '\r\n' ' '
|
|
}
|
|
|
|
# Get item body from stdin
|
|
# $1 itemname
|
|
zaf_ctrl_get_item_block() {
|
|
grep -v '^#' | awk '/^Item '$1'/ { i=0;
|
|
while (i==0) {
|
|
getline;
|
|
if (/^\/Item/) exit;
|
|
print $0;
|
|
}};
|
|
END {
|
|
exit i==0;
|
|
}'
|
|
}
|
|
|
|
# Get global plugin block body from stdin
|
|
# $1 itemname
|
|
zaf_ctrl_get_global_block() {
|
|
grep -v '^#' | awk '{ i=0;
|
|
while (i==0) {
|
|
getline;
|
|
if (/^Item /) exit;
|
|
print $0;
|
|
}}'
|
|
}
|
|
|
|
# Get item multiline option
|
|
# $1 optionname
|
|
zaf_block_get_moption() {
|
|
awk '/^'$1'::$/ { i=0;
|
|
while (i==0) {
|
|
getline;
|
|
if (/^::$/) {i=1; continue;};
|
|
print $0;
|
|
}};
|
|
END {
|
|
exit i==0;
|
|
}
|
|
'
|
|
}
|
|
|
|
# Get item singleline option from config block on stdin
|
|
# $1 optionname
|
|
zaf_block_get_option() {
|
|
grep "^$1:" | cut -d ' ' -f 2- | tr -d '\r\n'
|
|
}
|
|
|
|
# Get global option (single or multiline)
|
|
# $1 - control file
|
|
# $2 - option name
|
|
zaf_ctrl_get_global_option() {
|
|
zaf_ctrl_get_global_block <$1 | zaf_block_get_moption "$2" \
|
|
|| zaf_ctrl_get_global_block <$1 | zaf_block_get_option "$2"
|
|
}
|
|
# Get item specific option (single or multiline)
|
|
# $1 - control file
|
|
# $2 - item name
|
|
# $3 - option name
|
|
zaf_ctrl_get_item_option() {
|
|
zaf_ctrl_get_item_block <$1 "$2" | zaf_block_get_moption "$3" \
|
|
|| zaf_ctrl_get_item_block <$1 "$2" | zaf_block_get_option "$3"
|
|
}
|
|
|
|
# Check dependencies based on control file
|
|
zaf_ctrl_check_deps() {
|
|
local deps
|
|
deps=$(zaf_ctrl_get_global_block <$1 | zaf_block_get_option "Depends-${ZAF_PKG}" )
|
|
if ! zaf_os_specific zaf_check_deps $deps; then
|
|
zaf_err "Missing one of dependend system packages: $deps"
|
|
fi
|
|
deps=$(zaf_ctrl_get_global_block <$1 | zaf_block_get_option "Depends-bin" )
|
|
for cmd in $deps; do
|
|
if ! which $cmd >/dev/null; then
|
|
zaf_err "Missing binary dependency $cmd. Please install it first."
|
|
fi
|
|
done
|
|
}
|
|
|
|
# Install binaries from control
|
|
# $1 pluginurl
|
|
# $2 control
|
|
# $3 plugindir
|
|
zaf_ctrl_install() {
|
|
local binaries
|
|
local pdir
|
|
local script
|
|
local cmd
|
|
|
|
pdir="$3"
|
|
binaries=$(zaf_ctrl_get_global_option $2 "Install-bin")
|
|
for b in $binaries; do
|
|
zaf_fetch_url "$1/$b" >"${ZAF_TMP_DIR}/$b"
|
|
zaf_install_bin "${ZAF_TMP_DIR}/$b" "$pdir"
|
|
done
|
|
script=$(zaf_ctrl_get_global_option $2 "Install-script")
|
|
[ -n "$script" ] && eval "$script"
|
|
cmd=$(zaf_ctrl_get_global_option $2 "Install-cmd")
|
|
[ -n "$cmd" ] && $cmd
|
|
}
|
|
|
|
# Generates zabbix cfg from control file
|
|
# $1 control
|
|
# $2 pluginname
|
|
zaf_ctrl_generate_cfg() {
|
|
local items
|
|
local cmd
|
|
local iscript
|
|
local ikey
|
|
local lock
|
|
|
|
items=$(zaf_ctrl_get_items <"$1")
|
|
for i in $items; do
|
|
iscript=$(echo $i | tr -d '[]*&;:')
|
|
params=$(zaf_ctrl_get_item_option $1 $i "Parameters")
|
|
if [ -n "$params" ]; then
|
|
ikey="$2.$i[*]"
|
|
args=""
|
|
apos=1;
|
|
for p in $params; do
|
|
args="$args \$$apos"
|
|
apos=$(expr $apos + 1)
|
|
done
|
|
else
|
|
ikey="$2.$i"
|
|
fi
|
|
lock=$(zaf_ctrl_get_item_option $1 $i "Lock")
|
|
if [ -n "$lock" ]; then
|
|
lock="${ZAF_LIB_DIR}/zaflock $lock "
|
|
fi
|
|
cmd=$(zaf_ctrl_get_item_option $1 $i "Cmd")
|
|
if [ -n "$cmd" ]; then
|
|
$(which echo) "UserParameter=$ikey,${ZAF_LIB_DIR}/preload.sh $lock$cmd";
|
|
continue
|
|
fi
|
|
cmd=$(zaf_ctrl_get_item_option $1 $i "Function")
|
|
if [ -n "$cmd" ]; then
|
|
$(which echo) "UserParameter=$ikey,${ZAF_LIB_DIR}/preload.sh $lock$cmd";
|
|
continue;
|
|
fi
|
|
cmd=$(zaf_ctrl_get_item_option $1 $i "Script")
|
|
if [ -n "$cmd" ]; then
|
|
zaf_ctrl_get_item_option $1 $i "Script" >${ZAF_TMP_DIR}/${iscript}.sh;
|
|
zaf_install_bin ${ZAF_TMP_DIR}/${iscript}.sh ${ZAF_PLUGINS_DIR}/$2/
|
|
$(which echo) "UserParameter=$ikey,${ZAF_LIB_DIR}/preload.sh $lock${ZAF_PLUGINS_DIR}/$2/${iscript}.sh $args";
|
|
continue;
|
|
fi
|
|
zaf_err "Item $i declared in control file but has no Cmd, Function or Script!"
|
|
done
|
|
}
|
|
|
|
|