#!/usr/bin/env bash source "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")/config" set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x source "$PLUGIN_BASE_PATH/common/functions" source "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")/functions" service-restart-cmd() { #E restart the service #E dokku $PLUGIN_COMMAND_PREFIX:restart lolipop #A service, service to run command against declare desc="graceful shutdown and restart of the $PLUGIN_SERVICE service container" local cmd="$PLUGIN_COMMAND_PREFIX:restart" argv=("$@"); [[ ${argv[0]} == "$cmd" ]] && shift 1 declare SERVICE="$1" [[ -z "$SERVICE" ]] && dokku_log_fail "Please specify a name for the service" verify_service_name "$SERVICE" service_stop "$SERVICE" service_start "$SERVICE" dokku_log_info1 "Please call dokku ps:restart on all linked apps" } service-restart-cmd "$@"