SUSE-flavored systems uses STARTMODE and not ONBOOT

As described in /etc/sysconfig/network/ifcfg.template

Static template was already using the right one, but the dhcp configuration seems
to be copied from a Fedora/Redhat template.
This fixes the issue that the interface does not come up after reboot.
This commit is contained in:
Duncan Mac-Vicar P 2015-11-08 16:09:04 +01:00
parent 4df01da457
commit a21d5be705
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
#VAGRANT-BEGIN #VAGRANT-BEGIN
# The contents below are automatically generated by Vagrant. Do not modify. # The contents below are automatically generated by Vagrant. Do not modify.
BOOTPROTO=dhcp BOOTPROTO='dhcp'
ONBOOT=yes STARTMODE='auto'
DEVICE=eth<%= options[:interface] %> DEVICE='eth<%= options[:interface] %>'
#VAGRANT-END #VAGRANT-END

View File

@ -12,9 +12,9 @@ describe "templates/guests/suse/network_dhcp" do
expect(result).to eq <<-EOH.gsub(/^ {6}/, "") expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
#VAGRANT-BEGIN #VAGRANT-BEGIN
# The contents below are automatically generated by Vagrant. Do not modify. # The contents below are automatically generated by Vagrant. Do not modify.
BOOTPROTO=dhcp BOOTPROTO='dhcp'
ONBOOT=yes STARTMODE='auto'
DEVICE=ethen0 DEVICE='ethen0'
#VAGRANT-END #VAGRANT-END
EOH EOH
end end