diff --git a/playbook.yml b/playbook.yml index f91b46f..c0bfa5c 100644 --- a/playbook.yml +++ b/playbook.yml @@ -4,15 +4,8 @@ remote_user: root tasks: - - name: Ensure apache is at the latest version - ansible.builtin.yum: - name: httpd - state: latest - - - name: Write the apache config file - ansible.builtin.template: - src: /srv/httpd.j2 - dest: /etc/httpd.conf + - name: Update all apt packages + apt: state=latest force_apt_get=yes - name: Update db servers hosts: databases