add basic tools

DNS
Jean-Marie Mineau 4 years ago
parent 6b9a499fac
commit e940e80c8e

@ -0,0 +1,5 @@
#!/usr/bin/env ansible-playbook
---
- hosts: all,
roles:
- base_config

@ -0,0 +1,3 @@
---
# Use python 3
ansible_python_interpreter: /usr/bin/python3

@ -0,0 +1,17 @@
---
- name: Install and update basic tools
apt:
update_cache: true
name:
- sudo
- vim
- htop
- ntp
- bash-completion
- less
- screen
- git
state: latest
register: apt_result
retries: 3
until: apt_result is succeeded
Loading…
Cancel
Save