parse the "actions" block
(self, dic)
| 611 | return profiles |
| 612 | |
| 613 | def _parse_blk_actions(self, dic): |
| 614 | """parse the "actions" block""" |
| 615 | actions = self._get_entry(dic, self.key_actions, |
| 616 | mandatory=False) |
| 617 | if actions: |
| 618 | actions = actions.copy() |
| 619 | actions = self._norm_actions(actions) |
| 620 | if self._debug: |
| 621 | self._debug_dict('actions block', actions) |
| 622 | return actions |
| 623 | |
| 624 | def _parse_blk_trans_install(self, dic): |
| 625 | """parse the "trans_install" block""" |
no test coverage detected