mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
properly booleanify copy field
This commit is contained in:
@@ -22,6 +22,7 @@ import os
|
|||||||
import pipes
|
import pipes
|
||||||
|
|
||||||
from ansible.plugins.action import ActionBase
|
from ansible.plugins.action import ActionBase
|
||||||
|
from ansible.utils.boolean import boolean
|
||||||
|
|
||||||
|
|
||||||
class ActionModule(ActionBase):
|
class ActionModule(ActionBase):
|
||||||
@@ -33,7 +34,7 @@ class ActionModule(ActionBase):
|
|||||||
|
|
||||||
source = self._task.args.get('src', None)
|
source = self._task.args.get('src', None)
|
||||||
dest = self._task.args.get('dest', None)
|
dest = self._task.args.get('dest', None)
|
||||||
copy = self._task.args.get('copy', True)
|
copy = boolean(self._task.args.get('copy', True))
|
||||||
creates = self._task.args.get('creates', None)
|
creates = self._task.args.get('creates', None)
|
||||||
|
|
||||||
if source is None or dest is None:
|
if source is None or dest is None:
|
||||||
|
|||||||
Reference in New Issue
Block a user