Skip to content

Commit

Permalink
Merge pull request #2517 from phinze/2454-fix-dhcp-error-constant-typo
Browse files Browse the repository at this point in the history
provider/virtualbox: fix bad constant reference in dhcp error
  • Loading branch information
mitchellh committed Nov 20, 2013
2 parents 4883ece + 4225b0e commit b4aa8c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/providers/virtualbox/action/network.rb
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def hostonly_adapter(config)
interface[:dhcp][:lower] == config[:dhcp_lower] &&
interface[:dhcp][:upper] == config[:dhcp_upper]

raise Errors::NetworkDHCPAlreadyAttached if !valid
raise Vagrant::Errors::NetworkDHCPAlreadyAttached if !valid

@logger.debug("DHCP server already properly configured")
else
Expand Down

0 comments on commit b4aa8c0

Please sign in to comment.