mirror of
https://github.com/limosek/zaf.git
synced 2024-11-14 06:29:07 +01:00
35 lines
465 B
Plaintext
35 lines
465 B
Plaintext
|
#!/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
|
||
|
|