diff options
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index aa30473ea..3de5e40f3 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -1236,7 +1236,7 @@ It is not necessary on most networks."), default => sub { ($net->{type} eq 'modem' ? 'no' : 'yes') }, post => sub { my ($res) = @_; - $net->{ifcfg}{$net->{net_interface}} = bool2yesno($res); + $net->{ifcfg}{$net->{net_interface}}{ONBOOT} = bool2yesno($res); return $after_start_on_boot_step->(); }, }, |