diff options
-rw-r--r-- | perl-install/bootlook.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootlook.pm b/perl-install/bootlook.pm index d5b90cfc9..fd0505167 100644 --- a/perl-install/bootlook.pm +++ b/perl-install/bootlook.pm @@ -271,7 +271,7 @@ sub updateAurora { sub isAutologin { my $line; - open AUTOLOGIN, "/etc/sysconfig/autologin" or die _("can not open /etc/sysconfig/autologin for reading: %s", $!); + open AUTOLOGIN, "/etc/sysconfig/autologin"; while (<AUTOLOGIN>) { if (/AUTOLOGIN=(yes|no)/) { $line = $_; last; } } |