Method: VagrantBolt.command
- Defined in:
- lib/vagrant-bolt.rb
.command(command, env, machine, **args) ⇒ nil
Run a bolt command with the specified parameters
45 46 47 48 |
# File 'lib/vagrant-bolt.rb', line 45 def self.command(command, env, machine, **args) runner = VagrantBolt::Runner.new(env, machine) runner.run(:command, command, **args) end |