summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-12-23 09:40:51 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-12-23 09:40:51 +0000
commit30f63b21bd824ed4bd200c53d93958755796db6f (patch)
treecfbdc1bce8f1956554cf033ad9ef21fba1ccce2b
parent5a9afd422235d3082b8cb838ced57878ea832914 (diff)
downloaddrakx-30f63b21bd824ed4bd200c53d93958755796db6f.tar
drakx-30f63b21bd824ed4bd200c53d93958755796db6f.tar.gz
drakx-30f63b21bd824ed4bd200c53d93958755796db6f.tar.bz2
drakx-30f63b21bd824ed4bd200c53d93958755796db6f.tar.xz
drakx-30f63b21bd824ed4bd200c53d93958755796db6f.zip
"XFdrake --auto" is now fully auto using auto_install configuration instead of "as much auto as can be"
-rwxr-xr-xperl-install/standalone/XFdrake2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/XFdrake b/perl-install/standalone/XFdrake
index 4c0a63f52..8752e6b5e 100755
--- a/perl-install/standalone/XFdrake
+++ b/perl-install/standalone/XFdrake
@@ -34,7 +34,7 @@ local $_ = join '', @ARGV;
my ($configure_this) = grep { !/^-/ } @ARGV;
$configure_this = 'resolution' if $0 =~ /Xdrakres/;
-$configure_this ||= 'everything';
+$configure_this ||= $::auto ? 'auto_install' : 'everything';
{
my $in = 'interactive'->vnew('su');