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.
24 lines
404 B
YAML
24 lines
404 B
YAML
4 years ago
|
- hosts: localhost
|
||
|
tasks:
|
||
|
- command: whoami
|
||
|
register: whoami
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- whoami is successful
|
||
|
|
||
|
- set_fact:
|
||
|
me: "{{ whoami.stdout }}"
|
||
|
|
||
|
- hosts: localhost
|
||
|
user: "{{ me }}"
|
||
|
tasks:
|
||
|
- debug:
|
||
|
msg: worked with user ({{ me }})
|
||
|
|
||
|
- hosts: localhost
|
||
|
remote_user: "{{ me }}"
|
||
|
tasks:
|
||
|
- debug:
|
||
|
msg: worked with remote_user ({{ me }})
|