13 lines
215 B
YAML
13 lines
215 B
YAML
- name: install docker
|
|
hosts: all
|
|
tasks:
|
|
- name: Apt Update
|
|
shell: apt update
|
|
|
|
- name: Apt Full Upgrade
|
|
shell: apt -y full-upgrade
|
|
|
|
- name: Apt Autoremove
|
|
shell: apt -y autoremove
|
|
|