From 16e15668738aca1cc67dcfa74618199d0527d605 Mon Sep 17 00:00:00 2001 From: clyhtsuriva Date: Mon, 12 Jun 2023 21:51:38 +0200 Subject: Ansible playbooks, now, lint compliant --- ansible/update_adjutor.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'ansible/update_adjutor.yml') 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 +... -- cgit v1.2.3