(self, data_svc)
| 240 | return False |
| 241 | |
| 242 | async def bootstrap(self, data_svc): |
| 243 | abilities = [] |
| 244 | for i in self.get_config(name='agents', prop='bootstrap_abilities'): |
| 245 | for a in await data_svc.locate('abilities', match=dict(ability_id=i)): |
| 246 | abilities.append(a) |
| 247 | await self.task(abilities, obfuscator='plain-text') |
| 248 | |
| 249 | async def deadman(self, data_svc): |
| 250 | abilities = [] |
no test coverage detected