Re: [ansible-devel] Solaris 10 - '~' directory created in home directory - unarchive fails

2017-10-13 Thread Brian Coca
started work on this, it still depends on other parts being there, https://github.com/ansible/ansible/pull/31677 it will make shells and 'remote options' more configurable, including tmp of course. Careful on changing ansible_shell_executable, you have to make sure ansible_shell_type matches.

Re: [ansible-devel] Solaris 10 - '~' directory created in home directory - unarchive fails

2017-10-13 Thread Toshio Kuratomi
If ansible_shell_executable works you should be able to set it per-host (or for a group of hosts). So you will be able to get the fine-grained setting you want (it's just not obvious from the symptoms that setting the shell is the solution). -Toshio On Thu, Oct 12, 2017 at 11:11 AM, 'rmullinnix'

[ansible-devel] Re: Calling an Ansible role from inside an action plugin

2017-10-13 Thread 'jhawkesworth' via Ansible Development
I think you can still include another playbook in your playbook by using 'include' and the name of the playbook. Would that do? It would save you having to create any custom code. If you want you can even do a basic kind of parallel running of playbooks. See the examples here Slides 20-25 h

[ansible-devel] Calling an Ansible role from inside an action plugin

2017-10-13 Thread Frank Kaiser
Hi Guys, I want to include another playbook in my playbook. Ansible allows to do this by using "include_role" like so: - include_role: name: task_from: While this is a simple and working solution I want to offer a shorter syntax like so: - : This would then internally call role:tas