mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 17:23:09 +00:00
7 lines
207 B
Python
7 lines
207 B
Python
from ansible.runner.shell_plugins.sh import ShellModule as ShModule
|
|
|
|
class ShellModule(ShModule):
|
|
|
|
def env_prefix(self, **kwargs):
|
|
return 'env %s' % super(ShellModule, self).env_prefix(**kwargs)
|