mirror of
https://github.com/morten-olsen/configs.git
synced 2026-02-08 00:46:24 +01:00
18 lines
496 B
YAML
18 lines
496 B
YAML
- name: Show info
|
|
debug:
|
|
msg:
|
|
user: "{{ ansible_user }}"
|
|
home: "{{ ansible_env.HOME }}"
|
|
distribution: "{{ ansible_distribution }}"
|
|
family: "{{ ansible_os_family}}"
|
|
arch: "{{ ansible_architecture }}"
|
|
|
|
- name: Setting host facts
|
|
tags: always
|
|
ansible.builtin.set_fact:
|
|
username: alice
|
|
home: "{{ ansible_env.HOME }}"
|
|
use_become: true
|
|
mac_os: "{{ ansible_distribution == 'MacOSX' }}"
|
|
contexts: "{{ ['default'] + (contexts | default([])) }}"
|