aboutsummaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/main.yml
blob: ddcb6be4aab5c513b0e8de8bb8b6360b71b205f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: Ensure the APT cache is up-to-date
  apt:
    update_cache: yes
    cache_valid_time: 3600

- name: Perform a full system upgrade
  apt:
    upgrade: "safe"

- name: Install basic common packages
  apt:
    name: "{{ item }}"
  with_items: "{{ common_packages }}"

# vim: set ft=yaml sw=2: