summaryrefslogtreecommitdiffstats
path: root/perl-install/install/install2.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2008-03-19 14:56:56 +0000
committerOlivier Blin <oblin@mandriva.com>2008-03-19 14:56:56 +0000
commit25358c09c9b5c0e7132eb852d2cbbee96b5596fc (patch)
treeca6d66307ad03b6ba8976f2f98371772e46fde56 /perl-install/install/install2.pm
parentf5e36481b1ec41c69538350eac99c91ee7da3250 (diff)
downloaddrakx-backup-do-not-use-25358c09c9b5c0e7132eb852d2cbbee96b5596fc.tar
drakx-backup-do-not-use-25358c09c9b5c0e7132eb852d2cbbee96b5596fc.tar.gz
drakx-backup-do-not-use-25358c09c9b5c0e7132eb852d2cbbee96b5596fc.tar.bz2
drakx-backup-do-not-use-25358c09c9b5c0e7132eb852d2cbbee96b5596fc.tar.xz
drakx-backup-do-not-use-25358c09c9b5c0e7132eb852d2cbbee96b5596fc.zip
use UUID by default (for diskdrake and draklive-install)
Diffstat (limited to 'perl-install/install/install2.pm')
-rw-r--r--perl-install/install/install2.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index 56226b55d..9f2dda1cc 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -39,7 +39,6 @@ $o = $::o = {
#- packages => [ qw() ],
partitioning => { clearall => 0, eraseBadPartitions => 0, auto_allocate => 0 }, #-, readonly => 0 },
authentication => { md5 => 1, shadow => 1 },
- uuid_by_default => 1,
locale => { lang => 'en_US' },
#- isUpgrade => 0,
toRemove => [],
@@ -356,7 +355,7 @@ sub main {
newt => sub { $o->{interactive} = "curses" },
text => sub { $o->{interactive} = "curses" },
stdio => sub { $o->{interactive} = "stdio" },
- use_uuid => sub { $o->{uuid_by_default} = $v },
+ use_uuid => sub { $::no_uuid_by_default = !$v },
kickstart => sub { $::auto_install = $v },
local_install => sub { $::local_install = 1 },
uml_install => sub { $::uml_install = $::local_install = 1 },