Sha256: 564382d2f2b034f82e3c24c9dcc21110fa6d69546282b4b30dbcd43884ee67d6
Contents?: true
Size: 771 Bytes
Versions: 18
Compression:
Stored size: 771 Bytes
Contents
module Kontena::Cli::Nodes::Vagrant class RestartCommand < Clamp::Command include Kontena::Cli::Common include Kontena::Cli::GridOptions parameter "NAME", "Node name" def execute require_api_url require_current_grid require 'kontena/machine/vagrant' vagrant_path = "#{Dir.home}/.kontena/#{current_grid}/#{name}" abort("Cannot find Vagrant node #{name}".colorize(:red)) unless Dir.exist?(vagrant_path) Dir.chdir(vagrant_path) do ShellSpinner "Restarting Vagrant machine #{name.colorize(:cyan)} " do Open3.popen2('vagrant reload') do |stdin, output, wait| while o = output.gets print o if ENV['DEBUG'] end end end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems