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.
mitogen/tests/ansible/integration/runner/_etc_environment_user.yml

39 lines
647 B
YAML

# ~/.pam_environment
- name: Remove pam_environment
file:
path: ~/.pam_environment
state: absent
- shell: echo $MAGIC_PAM_ENV
register: echo
- assert:
that: echo.stdout == ""
fail_msg: echo={{echo}}
- name: Copy pam_environment
copy:
dest: ~/.pam_environment
content: |
MAGIC_PAM_ENV=321
- shell: echo $MAGIC_PAM_ENV
register: echo
- assert:
that: echo.stdout == "321"
fail_msg: echo={{echo}}
- name: Cleanup pam_environment
file:
path: ~/.pam_environment
state: absent
- shell: echo $MAGIC_PAM_ENV
register: echo
- assert:
that: echo.stdout == ""
fail_msg: echo={{echo}}