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.
33 lines
471 B
YAML
33 lines
471 B
YAML
# ~/.pam_environment
|
|
|
|
- file:
|
|
path: ~/.pam_environment
|
|
state: absent
|
|
|
|
- shell: echo $MAGIC_PAM_ENV
|
|
register: echo
|
|
|
|
- assert:
|
|
that: echo.stdout == ""
|
|
|
|
- copy:
|
|
dest: ~/.pam_environment
|
|
content: |
|
|
MAGIC_PAM_ENV=321
|
|
|
|
- shell: echo $MAGIC_PAM_ENV
|
|
register: echo
|
|
|
|
- assert:
|
|
that: echo.stdout == "321"
|
|
|
|
- file:
|
|
path: ~/.pam_environment
|
|
state: absent
|
|
|
|
- shell: echo $MAGIC_PAM_ENV
|
|
register: echo
|
|
|
|
- assert:
|
|
that: echo.stdout == ""
|