You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/roles/base_config/tasks/main.yml

34 lines
582 B
YAML

4 years ago
---
- name: Install and update basic tools
apt:
name:
- sudo
- vim
- htop
3 years ago
- ntp # network time sync
4 years ago
- bash-completion
- less
- screen
- git
3 years ago
- curl
- python3-pip # Because I like python
3 years ago
- tree
3 years ago
- unzip
3 years ago
- tcpdump
- net-tools
- acl
4 years ago
state: latest
3 years ago
update_cache: true
4 years ago
register: apt_result
retries: 3
until: apt_result is succeeded
4 years ago
- name: Customize motd
copy:
src: "update-motd.d/{{ item }}"
dest: "/etc/update-motd.d/{{ item }}"
mode: 0755
loop:
- 01-logo