14 lines
511 B
Plaintext
14 lines
511 B
Plaintext
|
#VAGRANT-BEGIN
|
||
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
||
|
NM_CONTROLLED=no
|
||
|
BOOTPROTO=static
|
||
|
ONBOOT=yes
|
||
|
IPADDR=<%= options[:ip] %>
|
||
|
NETMASK=<%= options[:netmask] %>
|
||
|
DEVICE=p7p<%= options[:interface] %>
|
||
|
<%= options[:gateway] ? "GATEWAY=#{options[:gateway]}" : '' %>
|
||
|
<%= options[:mac_address] ? "HWADDR=#{options[:mac_address]}" : '' %>
|
||
|
<%= options[:dns1] ? "DNS1=#{options[:dns1]}" : 'DNS1=8.8.4.4' %>
|
||
|
<%= options[:dns2] ? "DNS2=#{options[:dns2]}" : 'DNS1=8.8.8.8' %>
|
||
|
#VAGRANT-END
|