aboutsummaryrefslogtreecommitdiff
path: root/ansible/update_adjutor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/update_adjutor.yml')
-rw-r--r--ansible/update_adjutor.yml20
1 files changed, 11 insertions, 9 deletions
diff --git a/ansible/update_adjutor.yml b/ansible/update_adjutor.yml
index 562a083..2724a30 100644
--- a/ansible/update_adjutor.yml
+++ b/ansible/update_adjutor.yml
@@ -1,10 +1,12 @@
---
- - name: Update the server
- hosts: vps
- become: yes
- tasks:
- - name : Update and upgrade apt packages
- apt:
- update_cache: yes
- upgrade: yes
- autoremove: yes
+- name: Update the server
+ hosts: vps
+ become: true
+ tasks:
+
+ - name: Update and upgrade apt packages
+ ansible.builtin.apt:
+ update_cache: true
+ upgrade: true
+ autoremove: true
+...