1
0
mirror of https://github.com/limosek/zaf.git synced 2025-10-31 09:37:37 +01:00

First scripts

This commit is contained in:
Lukas Macura
2016-03-23 14:37:51 +01:00
parent b048d26533
commit 5e566a2046
7 changed files with 400 additions and 26 deletions

34
zaf Executable file
View File

@@ -0,0 +1,34 @@
#!/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