Add example of working with the environment
This commit is contained in:
parent
f7497e75e5
commit
b1c739889c
1 changed files with 33 additions and 0 deletions
33
examples/playbooks/environment.yml
Normal file
33
examples/playbooks/environment.yml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
# it is often useful to be able to set the environment for one command and have that environment be totally
|
||||||
|
# different for another. An example is you might use a HTTP proxy for some packages but not for others.
|
||||||
|
#
|
||||||
|
# in Ansible 1.1 and later, you can pass the environment to any module using either a dictionary variable
|
||||||
|
# or a dictionary itself.
|
||||||
|
|
||||||
|
|
||||||
|
- hosts: all
|
||||||
|
|
||||||
|
# here we make a variable named "env" that is a dictionary
|
||||||
|
|
||||||
|
vars:
|
||||||
|
env:
|
||||||
|
HI: test2
|
||||||
|
http_proxy=http://proxy.example.com:8080
|
||||||
|
user: root
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
# here we just define the dictionary directly and use it
|
||||||
|
|
||||||
|
- shell: echo $HI
|
||||||
|
environment:
|
||||||
|
HI: test1
|
||||||
|
|
||||||
|
# here we are using the $env variable above
|
||||||
|
|
||||||
|
- shell: echo $HI
|
||||||
|
environment: $env
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue