# HG changeset patch
# User Alastair Tse <atse@xxxxxxxxxxxxx>
# Node ID 1edaf60343a7409e24d50a4a908e13d223dca3d3
# Parent 43671a60b0f11b7fcb20df356ef5baf5d022cacb
[XEND] Fix mis-types in XendConfig
Signed-off-by: Alastair Tse <atse@xxxxxxxxxxxxx>
---
tools/python/xen/xend/XendConfig.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff -r 43671a60b0f1 -r 1edaf60343a7 tools/python/xen/xend/XendConfig.py
--- a/tools/python/xen/xend/XendConfig.py Fri Dec 01 18:33:11 2006 +0000
+++ b/tools/python/xen/xend/XendConfig.py Fri Dec 01 18:35:19 2006 +0000
@@ -75,11 +75,11 @@ XENAPI_HVM_CFG = {
XENAPI_CFG_TYPES = {
'uuid': str,
- 'power_state': int,
+ 'power_state': str,
'name_label': str,
'name_description': str,
'user_version': str,
- 'is_a_template': int,
+ 'is_a_template': bool0,
'resident_on': str,
'memory_static_min': int,
'memory_static_max': int,
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|