view the gathered hosts
(self)
| 308 | print(lib.settings.TERMINAL_HELP_MESSAGE) |
| 309 | |
| 310 | def do_view_gathered(self): |
| 311 | """ |
| 312 | view the gathered hosts |
| 313 | """ |
| 314 | if len(self.loaded_hosts) != 0: |
| 315 | for host in self.loaded_hosts: |
| 316 | lib.output.info(host.strip()) |
| 317 | else: |
| 318 | lib.output.warning("currently no gathered hosts") |
| 319 | |
| 320 | def do_add_single_host(self, ip): |
| 321 | """ |
no outgoing calls
no test coverage detected