plugins/guests/photon/cap/configure_networks.rb in vagrant-unbundled-1.8.5.2 vs plugins/guests/photon/cap/configure_networks.rb in vagrant-unbundled-1.9.1.1
- old
+ new
@@ -16,10 +16,10 @@
networks.each do |network|
device = interfaces[network[:interface]]
command = "ifconfig #{device}"
command << " #{network[:ip]}" if network[:ip]
- command << " netmast #{network[:netmask]}" if network[:netmask]
+ command << " netmask #{network[:netmask]}" if network[:netmask]
commands << command
end
comm.sudo(commands.join("\n"))
end