Skip to content

Commit

Permalink
feat: allow passing dev (#1897)
Browse files Browse the repository at this point in the history
  • Loading branch information
ALameLlama committed Oct 16, 2023
1 parent 8346129 commit 236edc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/homestead.rb
Expand Up @@ -33,7 +33,7 @@ def self.configure(config, settings)
# Configure Additional Networks
if settings.has_key?('networks')
settings['networks'].each do |network|
config.vm.network network['type'], ip: network['ip'], mac: network['mac'], bridge: network['bridge'] ||= nil, netmask: network['netmask'] ||= '255.255.255.0'
config.vm.network network['type'], ip: network['ip'], mac: network['mac'], bridge: network['bridge'] ||= nil, dev: network['dev'] ||= nil, netmask: network['netmask'] ||= '255.255.255.0'
end
end

Expand Down

0 comments on commit 236edc3

Please sign in to comment.