[Lunar-commits] CVS: moonbase/devel/db BUILD, 1.4, 1.5 POST_INSTALL, 1.5, 1.6

Aaron Watry watryac04 at lunar-linux.org
Thu Feb 3 17:16:46 UTC 2005


Update of /var/cvs/lunar/moonbase/devel/db
In directory espresso.foo-projects.org:/tmp/cvs-serv15415

Modified Files:
	BUILD POST_INSTALL 
Log Message:
Some small syntax errors to clean up, which should help people avoid 
issues upgrading db.


Index: BUILD
===================================================================
RCS file: /var/cvs/lunar/moonbase/devel/db/BUILD,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- BUILD	24 Jan 2005 23:07:49 -0000	1.4
+++ BUILD	3 Feb 2005 17:16:44 -0000	1.5
@@ -1,5 +1,5 @@
 (
-  if [ `lvu installed db | cut -d. -f1` == "3" ]; then
+  if [ `lvu installed db | cut -d. -f1` -eq "3" ]; then
     set_module_config OLD_DB y
   fi
 

Index: POST_INSTALL
===================================================================
RCS file: /var/cvs/lunar/moonbase/devel/db/POST_INSTALL,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- POST_INSTALL	25 Jan 2005 07:30:22 -0000	1.5
+++ POST_INSTALL	3 Feb 2005 17:16:44 -0000	1.6
@@ -1,6 +1,6 @@
 # Migration code sucks
 OLD_DB=`get_module_config OLD_DB`
-if [ "$OLD_DB" == "y" ]; then
+if [ "$OLD_DB" = "y" ]; then
   for mod in apache apache-mod_ssl bsddb3 dctc \
 	     drac exim gnome-libs heimdal latex2html \
 	     perl php php5 wvstreams xemacs bdb-ruby \



More information about the Lunar-commits mailing list