|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] [XEND] Used shutil.rename to cope with /t
# HG changeset patch
# User Tom Wilkie <tom.wilkie@xxxxxxxxx>
# Date 1177668227 -3600
# Node ID 6049b33d10e169d83c4f215106eadfb69597f22e
# Parent e7704d9b4a48c266316441650559656d7467cb37
[XEND] Used shutil.rename to cope with /tmp and /var on different file systems
signed-off-by: Tom Wilkie <tom.wilkie@xxxxxxxxx>
---
tools/python/xen/xend/XendDomain.py | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff -r e7704d9b4a48 -r 6049b33d10e1 tools/python/xen/xend/XendDomain.py
--- a/tools/python/xen/xend/XendDomain.py Fri Apr 27 11:02:47 2007 +0100
+++ b/tools/python/xen/xend/XendDomain.py Fri Apr 27 11:03:47 2007 +0100
@@ -293,10 +293,12 @@ class XendDomain:
width = 78)
finally:
f.close()
+
try:
- os.rename(fn, self._managed_config_path(dom_uuid))
+ shutil.move(fn, self._managed_config_path(dom_uuid))
except:
- log.exception("Renaming %s" % fn)
+ log.exception("Renaming %s to %s", fn,
+ self._managed_config_path(dom_uuid))
os.remove(fn)
except:
log.exception("Error occurred saving configuration file " +
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-unstable] [XEND] Used shutil.rename to cope with /tmp and /var on different file systems,
Xen patchbot-unstable <=
|
|
|
|
|