Sha256: d72eb2a44b36835cd48c14a568eae08e1d97f66209f5ad2bfd168f695144e2ab

Contents?: true

Size: 321 Bytes

Versions: 2

Compression:

Stored size: 321 Bytes

Contents

require_relative "action"

module VagrantPlugins
  module VagrantVmwareDhcp
    class Config < Vagrant.plugin(2, :config)
      attr_accessor :enable

      def initialize
        @enable = false
      end

      def finalize!
        if @enable != true
          @enable = false 
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-vmware-dhcp-0.0.7 lib/vagrant-vmware-dhcp/config.rb
vagrant-vmware-dhcp-0.0.6 lib/vagrant-vmware-dhcp/config.rb