summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2008-07-18 09:18:26 +0000
committerOlivier Blin <oblin@mandriva.com>2008-07-18 09:18:26 +0000
commit52a3f9b3d29f5c77326b4f0555ce06ecac66ee56 (patch)
tree42e2d50d064b8e2a2cfda51f9efb3efabd52c96a /perl-install
parentbe5f3b113249764e5b3bab90eb540cf7617fbb16 (diff)
downloaddrakx-52a3f9b3d29f5c77326b4f0555ce06ecac66ee56.tar
drakx-52a3f9b3d29f5c77326b4f0555ce06ecac66ee56.tar.gz
drakx-52a3f9b3d29f5c77326b4f0555ce06ecac66ee56.tar.bz2
drakx-52a3f9b3d29f5c77326b4f0555ce06ecac66ee56.tar.xz
drakx-52a3f9b3d29f5c77326b4f0555ce06ecac66ee56.zip
do not try to configure an undefined dm
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS3
-rwxr-xr-xperl-install/standalone/drakedm1
2 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index f1be2272a..f4cc11231 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- drakedm:
+ o do not try to configure an undefined dm
+
Version 10.47 - 10 July 2008
- fix reading and setting kdmrc (by resolving alternative in chroot)
diff --git a/perl-install/standalone/drakedm b/perl-install/standalone/drakedm
index 36c8200d6..259bb637b 100755
--- a/perl-install/standalone/drakedm
+++ b/perl-install/standalone/drakedm
@@ -65,6 +65,7 @@ several different X sessions on your local machine at the same time.")),
}
]
)
+ && $dm
) {
$in->do_pkgs->ensure_is_installed($dm->{PACKAGE}, $dm->{EXEC}) or goto start;
addVarsInSh($cfg_file, { DISPLAYMANAGER => $dm->{NAME} });