[ansible-devel] Re: Remote Env Setup Queries

2017-01-17 Thread 'Anand Dasari' via Ansible Development
Hi John
Did u find a solution setting up env on target machine using setWLSEnv.sh
I'm struggling too, if you have solved this , can you please help me?

thanks
Anand

On Friday, January 13, 2017 at 11:00:35 AM UTC, John Patrick wrote:
>
> If I execute $ . ${WL_HOME}/server/bin/setWLSEnv.sh
> I get 36 new and 2 modified environment variables, ideally I don't want 
> the consumer of my custom module to not have to specifiy these manually. I 
> would like the consumer to specify WL_HOME, then get the ansible module 
> framework to execute ${WL_HOME}/server/bin/setWLSEnv.sh
>
> If ansible isn't able to do this, I'll try and find a work around. But it 
> might be a useful feature for something like environment_source, so it 
> sources the scripts listed. Or maybe like unsafe where you can do source 
> and it will source the file not define it.
>
> John
>
>
> On Wednesday, 11 January 2017 12:54:22 UTC, John Patrick wrote:
>>
>> I'm working on a custom module but having issues with the environment 
>> setup on the remote server.
>>
>> How should the remote environment variables be correctly setup. I've been 
>> looking here 
>> http://docs.ansible.com/ansible/dev_guide/developing_modules.html but 
>> not found anything yet or I might have simply missed it.
>>
>> At the moment I'm doing a shell task, along the lines of ". PATH/env.sh 
>> && myscript.py", also doing sudo: yes, sudo_user: "{{ remote_user }}"
>>
>> Ideally I'ld like to know how I can specify PATH as a field for my 
>> module, then before the module executes on the target server the env.sh is 
>> executes before the actual task.
>>
>> Or if people know another module which does similar I don't mine 
>> reviewing that and working it out for myself. I just can't figure out how 
>> to source the shell script beforehand.
>>
>> Cheers,
>> John
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-devel+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-devel] Re: Remote Env Setup Queries

2017-01-13 Thread John Patrick
If I execute $ . ${WL_HOME}/server/bin/setWLSEnv.sh
I get 36 new and 2 modified environment variables, ideally I don't want the 
consumer of my custom module to not have to specifiy these manually. I 
would like the consumer to specify WL_HOME, then get the ansible module 
framework to execute ${WL_HOME}/server/bin/setWLSEnv.sh

If ansible isn't able to do this, I'll try and find a work around. But it 
might be a useful feature for something like environment_source, so it 
sources the scripts listed. Or maybe like unsafe where you can do source 
and it will source the file not define it.

John


On Wednesday, 11 January 2017 12:54:22 UTC, John Patrick wrote:
>
> I'm working on a custom module but having issues with the environment 
> setup on the remote server.
>
> How should the remote environment variables be correctly setup. I've been 
> looking here 
> http://docs.ansible.com/ansible/dev_guide/developing_modules.html but not 
> found anything yet or I might have simply missed it.
>
> At the moment I'm doing a shell task, along the lines of ". PATH/env.sh && 
> myscript.py", also doing sudo: yes, sudo_user: "{{ remote_user }}"
>
> Ideally I'ld like to know how I can specify PATH as a field for my module, 
> then before the module executes on the target server the env.sh is executes 
> before the actual task.
>
> Or if people know another module which does similar I don't mine reviewing 
> that and working it out for myself. I just can't figure out how to source 
> the shell script beforehand.
>
> Cheers,
> John
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-devel+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-devel] Re: Remote Env Setup Queries

2017-01-12 Thread John Patrick
Is their anyway I can get environment to source a shell script?

Also from within a custom module how do I define default environment 
variables? e.g. the user defines a base dir and the module defines various 
variables based upon the user provided value?

On Wednesday, 11 January 2017 12:54:22 UTC, John Patrick wrote:
>
> I'm working on a custom module but having issues with the environment 
> setup on the remote server.
>
> How should the remote environment variables be correctly setup. I've been 
> looking here 
> http://docs.ansible.com/ansible/dev_guide/developing_modules.html but not 
> found anything yet or I might have simply missed it.
>
> At the moment I'm doing a shell task, along the lines of ". PATH/env.sh && 
> myscript.py", also doing sudo: yes, sudo_user: "{{ remote_user }}"
>
> Ideally I'ld like to know how I can specify PATH as a field for my module, 
> then before the module executes on the target server the env.sh is executes 
> before the actual task.
>
> Or if people know another module which does similar I don't mine reviewing 
> that and working it out for myself. I just can't figure out how to source 
> the shell script beforehand.
>
> Cheers,
> John
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-devel+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-devel] Re: Remote Env Setup Queries

2017-01-12 Thread Brian Coca
It is for setting environment variables, it should not execute anything.


--
Brian Coca

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-devel+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-devel] Re: Remote Env Setup Queries

2017-01-12 Thread John Patrick
What I'm hoping to find it something like this;

$ cat play.yml
- hosts: localhost
  tasks:
- name: Test that my module works
  MY_CUSTOM_MODULE:
  register: result
  environment:
script: ${WL_HOME}/server/bin/setWLSEnv.sh

- debug: var=result
$

but script doesn't work, so not sure what it should be. It might be 
environment lacks this ability.

On Wednesday, 11 January 2017 12:54:22 UTC, John Patrick wrote:
>
> I'm working on a custom module but having issues with the environment 
> setup on the remote server.
>
> How should the remote environment variables be correctly setup. I've been 
> looking here 
> http://docs.ansible.com/ansible/dev_guide/developing_modules.html but not 
> found anything yet or I might have simply missed it.
>
> At the moment I'm doing a shell task, along the lines of ". PATH/env.sh && 
> myscript.py", also doing sudo: yes, sudo_user: "{{ remote_user }}"
>
> Ideally I'ld like to know how I can specify PATH as a field for my module, 
> then before the module executes on the target server the env.sh is executes 
> before the actual task.
>
> Or if people know another module which does similar I don't mine reviewing 
> that and working it out for myself. I just can't figure out how to source 
> the shell script beforehand.
>
> Cheers,
> John
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-devel+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-devel] Re: Remote Env Setup Queries

2017-01-12 Thread John Patrick
Where can I find a list of all the options that environment allows and how 
to use it correctly?

I've found this http://docs.ansible.com/ansible/playbooks_environment.html

What I'm trying to do is specify a script to execute which will setup the 
enviroment prior to execution, but that is either not an option or I just 
can't find the documentation.

Cheers,
John

On Wednesday, 11 January 2017 12:54:22 UTC, John Patrick wrote:
>
> I'm working on a custom module but having issues with the environment 
> setup on the remote server.
>
> How should the remote environment variables be correctly setup. I've been 
> looking here 
> http://docs.ansible.com/ansible/dev_guide/developing_modules.html but not 
> found anything yet or I might have simply missed it.
>
> At the moment I'm doing a shell task, along the lines of ". PATH/env.sh && 
> myscript.py", also doing sudo: yes, sudo_user: "{{ remote_user }}"
>
> Ideally I'ld like to know how I can specify PATH as a field for my module, 
> then before the module executes on the target server the env.sh is executes 
> before the actual task.
>
> Or if people know another module which does similar I don't mine reviewing 
> that and working it out for myself. I just can't figure out how to source 
> the shell script beforehand.
>
> Cheers,
> John
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-devel+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.