diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-07-25 03:31:06 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-07-25 03:31:06 +0000 |
commit | 7b2b43a71525019de911b5a42024d07da89a0320 (patch) | |
tree | fb303946b16d6f6ddd9d199edf7a6ba5af66f675 /cpp/config/IcePackAdmin.py | |
parent | commenbts (diff) | |
download | ice-7b2b43a71525019de911b5a42024d07da89a0320.tar.bz2 ice-7b2b43a71525019de911b5a42024d07da89a0320.tar.xz ice-7b2b43a71525019de911b5a42024d07da89a0320.zip |
Added targets and application descriptors.
Diffstat (limited to 'cpp/config/IcePackAdmin.py')
-rw-r--r-- | cpp/config/IcePackAdmin.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/config/IcePackAdmin.py b/cpp/config/IcePackAdmin.py index 3bf2c475c4c..7af77185381 100644 --- a/cpp/config/IcePackAdmin.py +++ b/cpp/config/IcePackAdmin.py @@ -59,7 +59,7 @@ def shutdownIcePack(toplevel, icePackPipe): sys.exit(1) -def addServer(toplevel, name, server, libpath, serverDescriptor): +def addServer(toplevel, name, serverDescriptor, server, libpath, targets): global icePackPort icePackAdmin = os.path.join(toplevel, "bin", "icepackadmin") @@ -68,8 +68,8 @@ def addServer(toplevel, name, server, libpath, serverDescriptor): command = icePackAdmin + options + \ r' "--Ice.Default.Locator=IcePack/locator:default -p ' + icePackPort + '" ' + \ - r' -e "server add \"' + name + '\\" \\"' + server + '\\" ' + \ - r' \"' + libpath + '\\" ' + serverDescriptor + '\"' + r' -e "server add \"' + name + '\\" \\"' + serverDescriptor + '\\" ' + \ + r' \"' + server + '\\" \\"' + libpath + '\\" ' + targets + '\"' icePackAdminPipe = os.popen(command) icePackAdminStatus = icePackAdminPipe.close() |