mirror of https://github.com/ansible/ansible.git
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.
27 lines
641 B
YAML
27 lines
641 B
YAML
4 years ago
|
---
|
||
|
- hosts: localhost
|
||
|
gather_facts: no
|
||
|
vars:
|
||
|
my_var:
|
||
|
become_method: sudo
|
||
|
connection: local
|
||
|
become: 1
|
||
|
tasks:
|
||
|
|
||
|
- include_vars: "./vars/connection.yml"
|
||
|
|
||
|
- command: whoami
|
||
|
ignore_errors: yes
|
||
|
register: result
|
||
|
failed_when: result is not success and (result.module_stderr is defined or result.module_stderr is defined)
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "'sudo' in result.module_stderr"
|
||
|
when: result is not success and result.module_stderr is defined
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "'Invalid become method specified' not in result.msg"
|
||
|
when: result is not success and result.msg is defined
|