1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-03 13:47:01 +03:00

Fix description in xml-rpc chmod methods

(cherry picked from commit ef241ba919bccf997961a99844e8dfaed96ae43a)
This commit is contained in:
Carlos Martín 2012-01-18 18:13:19 +01:00
parent 7241e8c134
commit 6cf9a00e81

View File

@ -31,7 +31,7 @@ class RequestManagerChmod : public Request
protected:
RequestManagerChmod(const string& method_name,
const string& help,
const string& params = "A:siii")
const string& params = "A:siiiiiiiiii")
:Request(method_name,params,help){};
~RequestManagerChmod(){};
@ -50,7 +50,7 @@ class VirtualMachineChmod : public RequestManagerChmod
public:
VirtualMachineChmod():
RequestManagerChmod("VirtualMachineChmod",
"Changes ownership of a virtual machine")
"Changes permission bits of a virtual machine")
{
Nebula& nd = Nebula::instance();
pool = nd.get_vmpool();
@ -68,7 +68,7 @@ class TemplateChmod : public RequestManagerChmod
public:
TemplateChmod():
RequestManagerChmod("TemplateChmod",
"Changes ownership of a virtual machine template")
"Changes permission bits of a virtual machine template")
{
Nebula& nd = Nebula::instance();
pool = nd.get_tpool();
@ -87,7 +87,7 @@ class VirtualNetworkChmod: public RequestManagerChmod
public:
VirtualNetworkChmod():
RequestManagerChmod("VirtualNetworkChmod",
"Changes ownership of a virtual network")
"Changes permission bits of a virtual network")
{
Nebula& nd = Nebula::instance();
pool = nd.get_vnpool();
@ -106,7 +106,7 @@ class ImageChmod: public RequestManagerChmod
public:
ImageChmod():
RequestManagerChmod("ImageChmod",
"Changes ownership of an image")
"Changes permission bits of an image")
{
Nebula& nd = Nebula::instance();
pool = nd.get_ipool();