[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Don't run network stop script when doing xend stop.
# HG changeset patch # User chris@xxxxxxxxxxxxxxxxxxxxxxxxxxx # Node ID f0e92f206c8a860a3fd59a09bd75c0d18ac8dd6d # Parent e47f04c55eb1612bca605c972943ae166aae22d0 Don't run network stop script when doing xend stop. It doesn't make sense to undo the network configuration when stopping xend since that would cut off all VMs from the network. Undoing the network setup should be an option independent of xend stop. Signed-off-by: Christian Limpach <Christian.Limpach@xxxxxxxxxxxx> diff -r e47f04c55eb1 -r f0e92f206c8a tools/python/xen/xend/server/SrvDaemon.py --- a/tools/python/xen/xend/server/SrvDaemon.py Mon Oct 24 11:57:37 2005 +++ b/tools/python/xen/xend/server/SrvDaemon.py Tue Oct 25 02:04:30 2005 @@ -262,10 +262,7 @@ return 1 def stop(self): - result = self.cleanup_xend(True) - from xen.xend import Vifctl - Vifctl.network("stop") - return result + return self.cleanup_xend(True) def run(self, status): try: _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |