Skip to content

Commit

Permalink
Fix typo (netmast => netmask) for Photon guest #7808
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek committed Oct 6, 2016
1 parent d96dc95 commit bc230d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/guests/photon/cap/configure_networks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def self.configure_networks(machine, networks)
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

Expand Down

0 comments on commit bc230d0

Please sign in to comment.