Extracted the basic role from the madonsible playbook
This commit is contained in:
27
tasks/apt.yml
Normal file
27
tasks/apt.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
- name: Update the installed packages
|
||||
apt:
|
||||
update_cache: yes
|
||||
upgrade: yes
|
||||
become: true
|
||||
|
||||
- name: Install essential packages
|
||||
package:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
become: true
|
||||
with_items:
|
||||
- vim
|
||||
- emacs
|
||||
- git
|
||||
- htop
|
||||
- zsh
|
||||
- python
|
||||
- python3
|
||||
- screen
|
||||
- tmux
|
||||
- dnsutils
|
||||
- stow
|
||||
- mosh
|
||||
- fail2ban
|
||||
- tig
|
||||
Reference in New Issue
Block a user