summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2009-12-04 15:45:17 +0100
committerBenoit Foucher <benoit@zeroc.com>2009-12-04 15:45:17 +0100
commitb8637054d739b3d0cb700bc985f1ccc1bd7bbbb9 (patch)
tree2aa55533cca1f595d0d9e222daf5b5fa4b03ba0d
parentbug 4427: fixing Slice comments to avoid buggy mcpp (diff)
downloadice-b8637054d739b3d0cb700bc985f1ccc1bd7bbbb9.tar.bz2
ice-b8637054d739b3d0cb700bc985f1ccc1bd7bbbb9.tar.xz
ice-b8637054d739b3d0cb700bc985f1ccc1bd7bbbb9.zip
Fixed comments in upgradeicegrid.py
-rwxr-xr-xcpp/config/upgradeicegrid.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/cpp/config/upgradeicegrid.py b/cpp/config/upgradeicegrid.py
index b3d289802d0..26c6269ab3e 100755
--- a/cpp/config/upgradeicegrid.py
+++ b/cpp/config/upgradeicegrid.py
@@ -10,20 +10,22 @@
#
# This script upgrades the IceGrid registry database environment for
-# 3.0.x version of IceGrid to the new format.
+# 3.1.x or 3.2.x version of IceGrid to the new format (3.3 or 3.4).
+# There's no need to upgrade a 3.3 IceGrid registry database to 3.4
+# as the database format did not changed.
#
# Usage:
#
# python upgradeicegrid.py olddbenv newdbenv
#
-# Where:
+# Where for example:
#
# olddbenv is the path of the Ice 3.1.x registry database environment
-# newdbenv is the path of the Ice 3.2 registry database environment
+# newdbenv is the path of new registry database environment
#
#
-# NOTE: the 3.1 slice definitions for the IceGrid database are stored
-# in the icegrid-slice.3.1.tar.gz file. These definitions are used by
+# NOTE: the 3.x slice definitions for the IceGrid database are stored
+# in the icegrid-slice.3.x.tar.gz file. These definitions are used by
# the script to perform the database transformation.
#
@@ -47,6 +49,10 @@ if win32:
def usage():
print "Usage: " + sys.argv[0] + " [options] olddbenv newdbenv"
print
+ print "This script upgrades a 3.1 or 3.2 IceGrid registry database environment"
+ print "to a 3.4 database environment. There's no need to upgrade a 3.3 database"
+ print "environment to 3.4, the database format did not change."
+ print
print "Options:"
print "-h Show this message."
sys.exit(2)