This commit is contained in:
alecsandruchirosca
2024-05-02 21:57:58 +03:00
parent d4b4e15ebf
commit 5512d15efc

View File

@@ -1,11 +1,20 @@
- hosts: all - hosts: all
become: true become: true
become_method: sudo
become_user: root
tasks: tasks:
- name: get user - name: Update and upgrade apt packages
# uses_shell: true apt:
ansible.builtin.shell: whoami upgrade: yes
update_cache: yes
cache_valid_time: 86400
# - hosts: all
# become: true
# become_method: sudo
# become_user: root
# tasks:
# - name: get user
# # uses_shell: true
# ansible.builtin.shell: whoami
# - name: Run whoami without become. # - name: Run whoami without become.