mirror of https://github.com/ansible/ansible.git
(cherry picked from commit 56f31126ad
)
pull/82837/head
parent
cb82ddec02
commit
3d263f8330
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- "Fix an issue when setting a plugin name from an unsafe source resulted in ``ValueError: unmarshallable object`` (https://github.com/ansible/ansible/issues/82708)"
|
@ -0,0 +1,6 @@
|
||||
from ansible.plugins.action import ActionBase
|
||||
|
||||
|
||||
class ActionModule(ActionBase):
|
||||
def run(self, tmp=None, task_vars=None):
|
||||
return {"nca_executed": True}
|
@ -0,0 +1,9 @@
|
||||
- hosts: localhost
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- action: !unsafe n.c.a
|
||||
register: r
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- r.nca_executed
|
Loading…
Reference in New Issue