You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
508 B
YAML
36 lines
508 B
YAML
6 years ago
|
# /etc/environment
|
||
|
|
||
|
- file:
|
||
|
path: /etc/environment
|
||
|
state: absent
|
||
|
become: true
|
||
|
|
||
|
- shell: echo $MAGIC_ETC_ENV
|
||
|
register: echo
|
||
|
|
||
|
- assert:
|
||
|
that: echo.stdout == ""
|
||
|
|
||
|
- copy:
|
||
|
dest: /etc/environment
|
||
|
content: |
|
||
|
MAGIC_ETC_ENV=555
|
||
|
become: true
|
||
|
|
||
|
- shell: echo $MAGIC_ETC_ENV
|
||
|
register: echo
|
||
|
|
||
|
- assert:
|
||
|
that: echo.stdout == "555"
|
||
|
|
||
|
- file:
|
||
|
path: /etc/environment
|
||
|
state: absent
|
||
|
become: true
|
||
|
|
||
|
- shell: echo $MAGIC_ETC_ENV
|
||
|
register: echo
|
||
|
|
||
|
- assert:
|
||
|
that: echo.stdout == ""
|