bootdisk/trunk/batch-installer/mkallpkgsets

hawk cvs at pld-linux.org
Sun Feb 5 18:08:53 CET 2006


Author: hawk
Date: Sun Feb  5 18:08:49 2006
New Revision: 6924

Modified:
   bootdisk/trunk/batch-installer/mkallpkgsets
Log:
- create list of package sets to allow special order in ui-wizard
  instead of alphabetically sorted one


Modified: bootdisk/trunk/batch-installer/mkallpkgsets
==============================================================================
--- bootdisk/trunk/batch-installer/mkallpkgsets	(original)
+++ bootdisk/trunk/batch-installer/mkallpkgsets	Sun Feb  5 18:08:49 2006
@@ -6,11 +6,15 @@
   shift
   echo "$name: $*"
   sh mkpkgset -m "$@" > $dir/$name
+  echo "$name" >> $dir/.list
 }
 
 dir="$1"
 test -d "$dir" || { echo "no dir: $dir"; exit 1; }
 
+# make sure that list of package sets is empty
+rm -f $dir/.list
+
 #
 # If you want new pkgset, add it here.
 #
@@ -21,11 +25,11 @@
 mk base $base
 mk devel $base devel devel_extras
 
+# this is stupid, isn't it? who is going to install server, based
+# on fixed pkgset anyway...
+mk server $base nfs servers backup_tools apache_base php_base
+
 x="$base xwindow"
-for wm in gnome kde wmaker icewm ; do
+for wm in kde gnome icewm wmaker ; do
   mk $wm-workstation $x $wm
 done
-
-# this is stupid, isn't it? who is going to install server, based
-# on fixed pkgset anyway...
-mk server $base nfs servers backup_tools apache php


More information about the pld-cvs-commit mailing list