Skip to content

Commit

Permalink
static is not a valid BOOTPROTO value
Browse files Browse the repository at this point in the history
Valid BOOTPROTO choices include: `none`, `bootp` and `dhcp`. In the case
of static network addresses `none` should be used.
  • Loading branch information
schisamo committed Apr 7, 2013
1 parent b89e593 commit 7ed4066
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/guests/fedora/network_static.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#VAGRANT-BEGIN
# The contents below are automatically generated by Vagrant. Do not modify.
NM_CONTROLLED=no
BOOTPROTO=static
BOOTPROTO=none
ONBOOT=yes
IPADDR=<%= options[:ip] %>
NETMASK=<%= options[:netmask] %>
Expand Down
2 changes: 1 addition & 1 deletion templates/guests/redhat/network_static.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#VAGRANT-BEGIN
# The contents below are automatically generated by Vagrant. Do not modify.
BOOTPROTO=static
BOOTPROTO=none
IPADDR=<%= options[:ip] %>
NETMASK=<%= options[:netmask] %>
DEVICE=eth<%= options[:interface] %>
Expand Down

0 comments on commit 7ed4066

Please sign in to comment.