aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/config.c
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-12-02 20:49:46 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-12-02 20:49:46 +0000
commit504fbf4e1eb06e5112d7b82d1b29aaecd0d96434 (patch)
treed60a5ab00a2875a6523a69fbc0393d1688b61b3d /usr.sbin/sysinstall/config.c
parent98ab23aaa46a6a4cace439419a5fc9da857376bf (diff)
downloadsrc-504fbf4e1eb06e5112d7b82d1b29aaecd0d96434.tar.gz
src-504fbf4e1eb06e5112d7b82d1b29aaecd0d96434.zip
Replace the KDE and GNOME 2 desktops with KDE (Lite Edition) and GNOME 2
(Lite Edition) respectively. These "lite" packages are streamlined to provide users with the core essentials for each desktop and to fit on the release disc 1. Approved by: re (scottl)
Notes
Notes: svn path=/head/; revision=123112
Diffstat (limited to 'usr.sbin/sysinstall/config.c')
-rw-r--r--usr.sbin/sysinstall/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/config.c b/usr.sbin/sysinstall/config.c
index 27937e1c256e..77cb9d0873fb 100644
--- a/usr.sbin/sysinstall/config.c
+++ b/usr.sbin/sysinstall/config.c
@@ -643,12 +643,12 @@ configXDesktop(dialogMenuItem *self)
return DITEM_FAILURE;
}
if (!strcmp(desk, "kde")) {
- ret = package_add("kde");
+ ret = package_add("kde-lite");
if (DITEM_STATUS(ret) != DITEM_FAILURE && gotit("startkde"))
write_root_xprofile("exec startkde\n");
}
else if (!strcmp(desk, "gnome2")) {
- ret = package_add("gnome2");
+ ret = package_add("gnome2-lite");
if (DITEM_STATUS(ret) != DITEM_FAILURE && gotit("gnome-session"))
write_root_xprofile("exec gnome-session\n");
}