Sha256: 0d2e0c354a4823593fe6d87b440965237a585fb664c656ac328fb511014764c4
Contents?: true
Size: 1.17 KB
Versions: 30
Compression:
Stored size: 1.17 KB
Contents
require 'ey-core/cli/subcommand' module Ey module Core module Cli module Web class Restart < Ey::Core::Cli::Subcommand title "restart" summary "Restart all application servers in an environment" option :environment, short: "e", long: "environment", description: "Name or id of the environment to deploy to.", argument: "environment" option :account, short: "c", long: "account", description: "Name or id of the account that the environment resides in.", argument: "account" def handle operator, environment = core_operator_and_environment_for(options) puts "Restarting application servers in #{environment.name}".green request = environment.restart_app_servers request.wait_for { |r| r.ready? } if request.successful puts "Successfully restarted application servers".green else puts "Restarting application servers has failed".red ap request end end end end end end end
Version data entries
30 entries across 30 versions & 2 rubygems