Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / mgr / mgr_commands.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3
4 #include "mgr_commands.h"
5
6 /* The set of statically defined (C++-handled) commands.  This
7  * does not include the Python-defined commands, which are loaded
8  * in PyModules */
9 const std::vector<MonCommand> mgr_commands = {
10 #define COMMAND(parsesig, helptext, module, perm, availability) \
11   {parsesig, helptext, module, perm, availability, 0},
12 #include "MgrCommands.h"
13 #undef COMMAND
14 };