13 lines
218 B
YAML
13 lines
218 B
YAML
|
---
|
||
|
- name: debian | updating apt-cache
|
||
|
apt:
|
||
|
update_cache: true
|
||
|
cache_valid_time: 86400
|
||
|
|
||
|
- name: debian | installing packages
|
||
|
apt:
|
||
|
name: "{{ item }}"
|
||
|
with_items:
|
||
|
- tftpd-hpa
|
||
|
- inetutils-inetd
|