mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-03-07 18:15:20 +01:00
Setting the shell from the executable basename is technically wrong, Ansible will determine the right shell to use on its own so setting it to None is safer
19 lines
537 B
YAML
19 lines
537 B
YAML
---
|
|
fixtures:
|
|
taskvars_in: taskvars_in.json
|
|
taskvars_out: taskvars_out.json
|
|
connection:
|
|
transport: ssh
|
|
hostvars:
|
|
127.0.0.1: {}
|
|
::1: {}
|
|
localhost: {}
|
|
asserts:
|
|
- hasattr(SAM._connection, 'ismock')
|
|
- SAM._connection.transport == 'local'
|
|
- self._play_context.shell == None
|
|
- self._play_context.executable == '/bin/sh'
|
|
- self.execute_called
|
|
- self.final_module_args['_local_rsync_path'] == 'rsync'
|
|
- self.final_module_args['src'] == '/tmp/deleteme'
|
|
- self.final_module_args['dest'] == 'root@el6host:/tmp/deleteme'
|