Sha256: 16487e8aa8a8453412b98bc97b04ab72eb2b54bd71b9e8feeb68d6a5a36ea908
Contents?: true
Size: 785 Bytes
Versions: 40
Compression:
Stored size: 785 Bytes
Contents
require_relative 'vagrant/create_command' require_relative 'vagrant/start_command' require_relative 'vagrant/stop_command' require_relative 'vagrant/restart_command' require_relative 'vagrant/terminate_command' require_relative 'vagrant/ssh_command' module Kontena::Cli::Nodes class VagrantCommand < Clamp::Command subcommand "create", "Create a new Vagrant node", Vagrant::CreateCommand subcommand "ssh", "SSH into Vagrant node", Vagrant::SshCommand subcommand "start", "Start Vagrant node", Vagrant::StartCommand subcommand "stop", "Stop Vagrant node", Vagrant::StopCommand subcommand "restart", "Restart Vagrant node", Vagrant::RestartCommand subcommand "terminate", "Terminate Vagrant node", Vagrant::TerminateCommand def execute end end end
Version data entries
40 entries across 40 versions & 1 rubygems