summaryrefslogtreecommitdiff
path: root/roles/server/tasks/update.yml
blob: a5b0c840666cbffc747af9135e63caac3f8c6e14 (plain)
1
2
3
4
5
6
7
8
9
---
# Updates the image

- name: Update apt
  apt:
    update_cache: yes

- name: Update all packages
  package: name=* state=latest force_apt_get=yes