Codebase list libvirt / 224ea63
Document changes and release 0.8.3-5+squeeze0 Guido Günther 13 years ago
3 changed file(s) with 17 addition(s) and 20 deletion(s). Raw diff Collapse all Expand all
0 libvirt (0.8.3-6~1.gbpca2348) UNRELEASED; urgency=low
1
2 ** SNAPSHOT build @ca2348476605efc4d067933f136ffdae3cf44283 **
3
4 [ Laurent Léonard ]
5 * [6e46f0e] Fix wrong regular expression in debian/watch
0 libvirt (0.8.3-5+squeeze0) stable; urgency=low
1
2 [ Laurent Léonard ]
63 * [6f95d48] Fix exit status codes in libvirt init script to comply with LSB
74 (Closes: #612305)
85
9 -- Guido Günther <agx@sigxcpu.org> Sat, 15 Jan 2011 13:55:42 +0100
6 -- Guido Günther <agx@sigxcpu.org> Fri, 18 Feb 2011 21:26:03 +0100
107
118 libvirt (0.8.3-5) unstable; urgency=low
129
1714 * [f561b2e] New patch 0010-nwfilter-resolve-deadlock-between-VM-
1815 operations-and-.patch nwfilter: resolve deadlock between VM operations and
1916 filter update (Closes: #602715)
20 * [91a1b8d] New patch 0011-OpenVZ-take-veid-from-vmdef-name-when-
17 * [239bbe5] New patch 0011-OpenVZ-take-veid-from-vmdef-name-when-
2118 defining-new-d.patch: Fixes OpenVZ domain creation (Closes: #592817) -
2219 thanks to Eric Litak.
23 * [3d3f395] New patch 0012-OpenVZ-Fix-some-overwritten-error-codes.patch:
20 * [c4a2a6b] New patch 0012-OpenVZ-Fix-some-overwritten-error-codes.patch:
2421 Improve error reporting.
2522
2623 -- Guido Günther <agx@sigxcpu.org> Wed, 01 Dec 2010 15:12:48 +0100
1919 - int max_veid;
2020 - char str_id[10];
2121 - FILE *fp;
22
22
2323 for (narg = 0; narg < maxarg; narg++)
2424 args[narg] = NULL;
2525 @@ -135,36 +131,7 @@ openvzDomainDefineCmd(const char *args[],
5757 - sprintf(str_id, "%d", max_veid);
5858 - ADD_ARG_LIT(str_id);
5959 + ADD_ARG_LIT(vmdef->name);
60
60
6161 ADD_ARG_LIT("--name");
6262 ADD_ARG_LIT(vmdef->name);
6363 @@ -188,11 +155,6 @@ no_memory:
7272 #undef ADD_ARG
7373 #undef ADD_ARG_LIT
7474 }
75 --
75 --
1818 #include "memory.h"
1919 #include "bridge.h"
2020 +#include "logging.h"
21
21
2222 #define VIR_FROM_THIS VIR_FROM_OPENVZ
23
23
2424 @@ -209,8 +210,7 @@ static int openvzSetInitialConfig(virDomainDefPtr vmdef)
2525 else
2626 {
3030 + VIR_ERROR0(_("Error creating command for container"));
3131 goto cleanup;
3232 }
33
33
3434 @@ -870,8 +870,7 @@ openvzDomainDefineXML(virConnectPtr conn, const char *xml)
3535 vm->persistent = 1;
36
36
3737 if (openvzSetInitialConfig(vm->def) < 0) {
3838 - openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
3939 - _("Error creating initial configuration"));
4040 + VIR_ERROR0(_("Error creating initial configuration"));
4141 goto cleanup;
4242 }
43
43
4444 @@ -954,8 +953,7 @@ openvzDomainCreateXML(virConnectPtr conn, const char *xml,
4545 vm->persistent = 1;
46
46
4747 if (openvzSetInitialConfig(vm->def) < 0) {
4848 - openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
4949 - _("Error creating initial configuration"));
5050 + VIR_ERROR0(_("Error creating initial configuration"));
5151 goto cleanup;
5252 }
53
54 --
53
54 --