File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 115115 - The ID of the exec session.
116116'''
117117
118- from ansible_collections .containers .podman .plugins .module_utils .podman .common import run_podman_command
119- from ansible .module_utils .basic import AnsibleModule
120- from ansible .module_utils ._text import to_text
121- from ansible .module_utils .six import string_types
118+
122119import shlex
120+ from ansible .module_utils .six import string_types
121+ from ansible .module_utils ._text import to_text
122+ from ansible .module_utils .basic import AnsibleModule
123+ from ansible_collections .containers .podman .plugins .module_utils .podman .common import run_podman_command
123124
124125
125126def run_container_exec (module : AnsibleModule ) -> dict :
@@ -217,10 +218,6 @@ def main():
217218 'type' : 'bool' ,
218219 'default' : False ,
219220 },
220- 'privileged' : {
221- 'type' : 'bool' ,
222- 'default' : False ,
223- },
224221 'tty' : {
225222 'type' : 'bool' ,
226223 'default' : False ,
You can’t perform that action at this time.
0 commit comments