Sha256: 56ed28c53e1ab67477a38d33ce786767eee02e5bb48e6753d0103fcbc3f49bd7

Contents?: true

Size: 517 Bytes

Versions: 5

Compression:

Stored size: 517 Bytes

Contents

module Kontena::Plugin::Vagrant::Master
  class StopCommand < Kontena::Command
    include Kontena::Cli::Common

    def execute
      require_relative '../../../machine/vagrant'

      vagrant_path = "#{Dir.home}/.kontena/vagrant_master"
      abort("Cannot find Vagrant kontena-master".colorize(:red)) unless Dir.exist?(vagrant_path)
      Dir.chdir(vagrant_path) do
        spinner "Triggering 'vagrant halt' for kontena-master"
        exit $?.exitstatus unless system('vagrant halt')
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
krates-plugin-vagrant-0.3.3 lib/kontena/plugin/vagrant/master/stop_command.rb
krates-plugin-vagrant-0.3.2 lib/kontena/plugin/vagrant/master/stop_command.rb
krates-plugin-vagrant-0.3.1 lib/kontena/plugin/vagrant/master/stop_command.rb
kontena-plugin-vagrant-0.3.1 lib/kontena/plugin/vagrant/master/stop_command.rb
kontena-plugin-vagrant-0.3.0 lib/kontena/plugin/vagrant/master/stop_command.rb