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.
22 lines
429 B
YAML
22 lines
429 B
YAML
---
|
|
|
|
- hosts: all
|
|
tasks:
|
|
- name: "This command should run as the SSH user"
|
|
command: whoami
|
|
register: whoami
|
|
|
|
- name: "Verify non-become user is correct"
|
|
assert:
|
|
that: "whoami.stdout == '{{ansible_user_id}}'"
|
|
|
|
- name: "This command should run as root"
|
|
become: true
|
|
command: whoami
|
|
register: whoami
|
|
|
|
- name: "Verify become user is correct"
|
|
assert:
|
|
that: "whoami.stdout == 'root'"
|
|
|