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

Initial release

This commit is contained in:
Lukas Macura
2016-03-23 17:25:18 +01:00
parent 5e566a2046
commit 1e89b27028
6 changed files with 193 additions and 8 deletions

20
zaf
View File

@@ -14,21 +14,37 @@ fi
. ${ZAF_LIB_DIR}/zaf.lib.sh
case $1 in
check-agent-config)
zaf_check_agent_config
;;
update)
zaf_update_repo
;;
list-installed)
list)
zaf_list_installed_plugins
;;
info)
zaf_plugin_info "$2"
;;
install)
zaf_install_plugin "$2"
;;
remove)
zaf_remove_plugin "$2"
;;
*)
echo "$0 update"
echo "$0 install plugin"
echo "$0 list"
echo "$0 install plugin"
echo "$0 remove plugin"
;;
esac