mirror of
https://github.com/limosek/zaf.git
synced 2024-11-21 18:09:06 +01:00
35 lines
465 B
Bash
Executable File
35 lines
465 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Some defaults
|
|
|
|
ZAF_AGENT_RESTART="service zabbix-agentd restart"
|
|
ZAF_AGENT_CONFIG="/etc/zabbix/zabbix_agentd.conf"
|
|
ZAF_LIB_DIR="/usr/lib/zaf/"
|
|
ZAF_PLUGINS_DIR="/usr/lib/zaf/plugins/"
|
|
|
|
if [ -f /etc/zaf.conf ]; then
|
|
. /etc/zaf.conf
|
|
fi
|
|
|
|
. ${ZAF_LIB_DIR}/zaf.lib.sh
|
|
|
|
case $1 in
|
|
update)
|
|
zaf_update_repo
|
|
;;
|
|
|
|
list-installed)
|
|
zaf_list_installed_plugins
|
|
;;
|
|
|
|
install)
|
|
zaf_install_plugin "$2"
|
|
;;
|
|
|
|
*)
|
|
echo "$0 update"
|
|
echo "$0 install plugin"
|
|
;;
|
|
esac
|
|
|