|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 06 of 17 v3] xl: the name field in a guest config file is mandatory
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1322576247 0
# Node ID 19c600402e8008d768fd36b7a5e6cd9b109e04e4
# Parent ce3fa9ade7c176b4439aba566551ed2b48915d67
xl: the name field in a guest config file is mandatory
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
diff -r ce3fa9ade7c1 -r 19c600402e80 tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c Tue Nov 29 14:17:27 2011 +0000
+++ b/tools/libxl/xl_cmdimpl.c Tue Nov 29 14:17:27 2011 +0000
@@ -575,8 +575,10 @@ static void parse_config_data(const char
if (!xlu_cfg_get_long (config, "hap", &l))
c_info->hap = l;
- if (xlu_cfg_replace_string (config, "name", &c_info->name))
- c_info->name = strdup("test");
+ if (xlu_cfg_replace_string (config, "name", &c_info->name)) {
+ fprintf(stderr, "Domain name must be specified.");
+ exit(1);
+ }
if (!xlu_cfg_get_string (config, "uuid", &buf) ) {
if ( libxl_uuid_from_string(&c_info->uuid, buf) ) {
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |