mirror of
https://github.com/samsapti/bachelor-project.git
synced 2024-11-22 12:57:56 +00:00
Also upgrade system packages
This commit is contained in:
parent
4ffa5a6afa
commit
ed9d9284ef
|
@ -5,6 +5,11 @@
|
|||
gather_facts: true
|
||||
become: true
|
||||
tasks:
|
||||
- name: Upgrade system packages
|
||||
ansible.builtin.apt:
|
||||
update_cache: true
|
||||
upgrade: full
|
||||
|
||||
- name: Create user {{ username }}
|
||||
ansible.builtin.user:
|
||||
name: "{{ username }}"
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
- name: Install dependencies via apt
|
||||
ansible.builtin.apt:
|
||||
name: "{{ pkgs }}"
|
||||
update_cache: true
|
||||
state: present
|
||||
become_user: root
|
||||
vars:
|
||||
|
|
Loading…
Reference in a new issue