Merge pull request #1738 from drogerschariot/master

Private Network bugfix in Fedora by switching p7p to eth
This commit is contained in:
Mitchell Hashimoto 2013-07-23 19:40:33 -07:00
commit ea89b43a06
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ BOOTPROTO=none
ONBOOT=yes
IPADDR=<%= options[:ip] %>
NETMASK=<%= options[:netmask] %>
DEVICE=p7p<%= options[:interface] %>
DEVICE=eth<%= options[:interface] %>
<%= options[:gateway] ? "GATEWAY=#{options[:gateway]}" : '' %>
<%= options[:mac_address] ? "HWADDR=#{options[:mac_address]}" : '' %>
<%= options[:dns1] ? "DNS1=#{options[:dns1]}" : 'DNS1=8.8.4.4' %>