| Conditions | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | """ |
||
| 31 | def get_default_commands(self): |
||
| 32 | """ |
||
| 33 | Returns the default commands of this application. |
||
| 34 | |||
| 35 | :rtype: list[cleo.Command] |
||
| 36 | """ |
||
| 37 | commands = Application.get_default_commands(self) |
||
| 38 | |||
| 39 | self.add(BootstrapCommand()) |
||
| 40 | self.add(HaltCommand()) |
||
| 41 | self.add(LoadHostCommand()) |
||
| 42 | self.add(LoadScheduleCommand()) |
||
| 43 | self.add(NagiosCommand()) |
||
| 44 | self.add(NodeActionCommand()) |
||
| 45 | |||
| 46 | return commands |
||
| 47 | |||
| 49 |