Sha256: 41c1bb7fb9c65dc28a7c80c802b329c8389085b0e4f476388b6827be2937124f

Contents?: true

Size: 396 Bytes

Versions: 1

Compression:

Stored size: 396 Bytes

Contents

module VagrantPlugins
  module ShellCommander
    # Plugin definition
    #
    class Plugin < Vagrant.plugin("2")
      name 'vagrant shell commander'
      
      command 'sh' do
        Command
      end
      
      config 'sh' do
        Config
      end
      
      action_hook :sh_hook do |hook|
        hook.after(Vagrant::Action::Builtin::Provision, Action)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-shell-commander-0.3.2 lib/vagrant-shell-commander/plugin.rb