diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-05-24 09:48:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-05-24 09:48:37 +0000 |
commit | 898a4bf0de7ac284bf67a33cdb9fa5c4b2619a31 (patch) | |
tree | 00187da0b68a98c3dc2fd9cd0d9ebc40044fa037 | |
parent | 3d231bc94263686f6f68d1aaacea28a07be36d7e (diff) | |
download | drakx-898a4bf0de7ac284bf67a33cdb9fa5c4b2619a31.tar drakx-898a4bf0de7ac284bf67a33cdb9fa5c4b2619a31.tar.gz drakx-898a4bf0de7ac284bf67a33cdb9fa5c4b2619a31.tar.bz2 drakx-898a4bf0de7ac284bf67a33cdb9fa5c4b2619a31.tar.xz drakx-898a4bf0de7ac284bf67a33cdb9fa5c4b2619a31.zip |
(g_auto_install): autoExitInstall set if not replay (was the opposite)
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index c304558ef..bcd30e39d 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -649,7 +649,7 @@ sub g_auto_install { } local $o->{partitioning}{auto_allocate} = !$replay; - local $o->{autoExitInstall} = $replay; + local $o->{autoExitInstall} = !$replay; #- deep copy because we're modifying it below $o->{users} = [ @{$o->{users} || []} ]; |