/*
* virsh.c: a Xen shell used to exercise the libvirt API
*
- * Copyright (C) 2005, 2007-2008 Red Hat, Inc.
+ * Copyright (C) 2005, 2007-2009 Red Hat, Inc.
*
* See COPYING.LIB for the License of this software
*
*/
static const vshCmdInfo info_domname[] = {
{"help", gettext_noop("convert a domain id or UUID to domain name")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_domid[] = {
{"help", gettext_noop("convert a domain name or UUID to domain id")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_domuuid[] = {
{"help", gettext_noop("convert a domain name or id to domain UUID")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_network_name[] = {
{"help", gettext_noop("convert a network UUID to network name")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_network_uuid[] = {
{"help", gettext_noop("convert a network name to network UUID")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_pool_name[] = {
{"help", gettext_noop("convert a pool UUID to pool name")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_pool_uuid[] = {
{"help", gettext_noop("convert a pool name to pool UUID")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_vol_name[] = {
{"help", gettext_noop("convert a vol UUID to vol name")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_vol_key[] = {
{"help", gettext_noop("convert a vol UUID to vol key")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_vol_path[] = {
{"help", gettext_noop("convert a vol UUID to vol path")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_node_list_devices[] = {
{"help", gettext_noop("enumerate devices on this host")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_hostname[] = {
{"help", gettext_noop("print the hypervisor hostname")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_uri[] = {
{"help", gettext_noop("print the hypervisor canonical URI")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
*/
static const vshCmdInfo info_quit[] = {
{"help", gettext_noop("quit this interactive terminal")},
- {"desc", gettext_noop("")}, /* FIXME: describe */
+ {"desc", ""},
{NULL, NULL}
};
fputc('\n', stdout);
if (desc[0]) {
- /* FIXME: remove this test once all of the empty descriptions
- have been removed; see `FIXME: describe' lines. */
+ /* Print the description only if it's not empty. */
fputs(_("\n DESCRIPTION\n"), stdout);
fprintf(stdout, " %s\n", desc);
}