Files
homelab/update.yml
alecsandruchirosca 4c8184b385 no update
2024-05-02 21:47:21 +03:00

17 lines
335 B
YAML

- hosts: all
tasks:
- name: Run whoami without become.
command: whoami
changed_when: false
become: false
register: whoami
- name: Set a fact with the user name.
set_fact:
login_user: "{{ whoami.stdout }}"
# - name: Update Ubuntu
# apt:
# upgrade: true
# update_cache: true
# become: true