
Create a set of roles to be composed into a new infrared plugin. The final goal for these roles is to be used for either downstream and upstream CI Change-Id: I48d5f500c2e694c3f94ee497a0df1d92b6c411b3
15 lines
298 B
YAML
15 lines
298 B
YAML
---
|
|
|
|
- name: "expand actual user home directory"
|
|
command: 'echo "{{ user_home }}"'
|
|
register: expand_user_home
|
|
|
|
|
|
- name: "update user home directory"
|
|
set_fact:
|
|
user_home: '{{ expand_user_home.stdout.strip() | realpath }}'
|
|
|
|
|
|
- name: "show actual user home directory"
|
|
debug: var=user_home
|