Sha256: e24d3735ca26b5e389461b74c1225f10ec634cacfbf977cdecdb76d6f6e3859f

Contents?: true

Size: 320 Bytes

Versions: 3

Compression:

Stored size: 320 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

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-vmware-dhcp-0.0.10 lib/vagrant-vmware-dhcp/config.rb
vagrant-vmware-dhcp-0.0.9 lib/vagrant-vmware-dhcp/config.rb
vagrant-vmware-dhcp-0.0.8 lib/vagrant-vmware-dhcp/config.rb