diff --git a/update.yml b/update.yml index a61aa43..5970cb5 100644 --- a/update.yml +++ b/update.yml @@ -1,5 +1,14 @@ - 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