/*
* libvirt-network.c: entry points for virNetworkPtr APIs
*
- * Copyright (C) 2006-2014 Red Hat, Inc.
+ * Copyright (C) 2006-2015 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* @conn: pointer to the hypervisor connection
* @xml: the XML description for the network, preferably in UTF-8
*
- * Define a network, but does not create it
+ * Define an inactive persistent virtual network or modify an existing
+ * persistent one from the XML description.
*
* virNetworkFree should be used to free the resources after the
* network object is no longer needed.
/*
* virsh-network.c: Commands to manage network
*
- * Copyright (C) 2005, 2007-2014 Red Hat, Inc.
+ * Copyright (C) 2005, 2007-2015 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*/
static const vshCmdInfo info_network_define[] = {
{.name = "help",
- .data = N_("define (but don't start) a network from an XML file")
+ .data = N_("define an inactive persistent virtual network or modify "
+ "an existing persistent one from an XML file")
},
{.name = "desc",
- .data = N_("Define a network.")
+ .data = N_("Define or modify a persistent virtual network.")
},
{.name = NULL}
};
=item B<net-define> I<file>
-Define a persistent virtual network from an XML I<file>, the network is just
-defined but not instantiated (started).
+Define an inactive persistent virtual network or modify an existing persistent
+one from the XML I<file>.
=item B<net-destroy> I<network>