You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
425 B
23 lines
425 B
8 months ago
|
---
|
||
|
- name: Performing APT cache update
|
||
|
ansible.builtin.apt:
|
||
|
upgrade: no
|
||
|
update_cache: yes
|
||
|
cache_valid_time: 86400
|
||
|
become: true
|
||
|
become_method: sudo
|
||
|
|
||
|
- name: Install basic packages
|
||
|
ansible.builtin.package:
|
||
|
name:
|
||
|
- apt-transport-https
|
||
|
- mlocate
|
||
|
- wget
|
||
|
- curl
|
||
|
- net-tools
|
||
|
- git
|
||
|
- software-properties-common
|
||
|
state: latest
|
||
|
become: true
|
||
|
become_method: sudo
|