diff options
-rw-r--r-- | perl-install/Xconfig/various.pm | 2 | ||||
-rwxr-xr-x | perl-install/standalone/XFdrake | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/Xconfig/various.pm b/perl-install/Xconfig/various.pm index 5849a1c17..1aa0dd1be 100644 --- a/perl-install/Xconfig/various.pm +++ b/perl-install/Xconfig/various.pm @@ -66,7 +66,7 @@ sub choose_xdm { my ($in, $b_auto) = @_; my $xdm = $::isStandalone ? runlevel() == 5 : 1; - if (!$b_auto || $::isStandalone) { + if (!$b_auto) { $xdm = $in->ask_yesorno_({ title => N("Graphical interface at startup"), messages => diff --git a/perl-install/standalone/XFdrake b/perl-install/standalone/XFdrake index 6aec02673..c5c678361 100755 --- a/perl-install/standalone/XFdrake +++ b/perl-install/standalone/XFdrake @@ -88,6 +88,7 @@ sub ask_for_X_restart { return; } + return if $::auto; $in->ask_okcancel('', N("You need to log out and back in again for changes to take effect"), 1) or return; if (fork()) { |