mirror of
https://github.com/dokku/dokku.git
synced 2025-12-25 08:19:22 +01:00
83 lines
2.4 KiB
Bash
Executable File
83 lines
2.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
[[ " plugin plugin:install plugin:install-dependencies plugin:update plugin:disable plugin:enable plugin:uninstall help plugin:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/plugin/functions"
|
|
|
|
case "$1" in
|
|
plugin)
|
|
plugn version
|
|
plugn list
|
|
;;
|
|
|
|
plugin:install)
|
|
case "$2" in
|
|
--core)
|
|
[[ "$#" -gt 2 ]] && dokku_log_info1_quiet "Cannot install additional core plugins, running core plugin install trigger"
|
|
PLUGIN_PATH="$PLUGIN_CORE_PATH" plugn trigger install
|
|
;;
|
|
https:*|git*|ssh:*)
|
|
shift
|
|
download_and_enable_plugin "$@"
|
|
plugn trigger install
|
|
;;
|
|
*)
|
|
plugn trigger install
|
|
;;
|
|
esac
|
|
;;
|
|
|
|
plugin:install-dependencies)
|
|
if [[ $2 == "--core" ]]; then
|
|
export PLUGIN_PATH="$PLUGIN_CORE_PATH"
|
|
fi
|
|
plugn trigger dependencies
|
|
;;
|
|
|
|
plugin:update)
|
|
if [[ -n "$2" ]]; then
|
|
PLUGIN="$2"
|
|
PLUGIN_COMMITTISH="$3"
|
|
plugn update "$PLUGIN" "$PLUGIN_COMMITTISH"
|
|
fi
|
|
plugn trigger update
|
|
;;
|
|
|
|
plugin:disable)
|
|
[[ -z $2 ]] && dokku_log_fail "Please specify a plugin to disable"
|
|
PLUGIN="$2"
|
|
disable_plugin "$PLUGIN"
|
|
;;
|
|
|
|
plugin:enable)
|
|
[[ -z $2 ]] && dokku_log_fail "Please specify a plugin to enable"
|
|
PLUGIN="$2"
|
|
enable_plugin "$PLUGIN"
|
|
;;
|
|
|
|
plugin:uninstall)
|
|
[[ -z $2 ]] && dokku_log_fail "Please specify a plugin to enable"
|
|
PLUGIN="$2"
|
|
uninstall_plugin "$PLUGIN"
|
|
;;
|
|
|
|
help | plugin:help)
|
|
cat<<EOF
|
|
plugin, Print active plugins
|
|
plugin:install [--core|git-url [--committish tag|branch|commit|--name custom-plugin-name]], Optionally download git-url (with custom tag/committish) & run install trigger for active plugins (or only core ones)
|
|
plugin:install-dependencies [--core], Run install-dependencies trigger for active plugins (or only core ones)
|
|
plugin:update [name [committish]], Optionally update named plugin from git (with custom tag/committish) & run update trigger for active plugins
|
|
plugin:enable <name>, Enable a previously disabled plugin
|
|
plugin:disable <name>, Disable an installed plugin (third-party only)
|
|
plugin:uninstall <name>, Uninstall a plugin (third-party only)
|
|
EOF
|
|
;;
|
|
|
|
*)
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
;;
|
|
|
|
esac
|
|
|
|
|