2020-05-29 22:45:33 +02:00
|
|
|
- hosts: vyos
|
2020-05-29 17:00:21 +02:00
|
|
|
gather_facts: false
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Run whoami
|
|
|
|
vyos.vyos.vyos_command:
|
|
|
|
commands:
|
|
|
|
- whoami
|
|
|
|
register: whoami
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- whoami is successful
|
|
|
|
- whoami.stdout_lines[0][0] == 'atester'
|