forked from infra/ansible
common: install software on proxmox
This commit is contained in:
parent
65786edf03
commit
267557f068
15
roles/common/tasks/Proxmox.yml
Normal file
15
roles/common/tasks/Proxmox.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
- name: Install misc software
|
||||||
|
apt: name={{ item }}
|
||||||
|
with_items:
|
||||||
|
- dnsutils
|
||||||
|
- htop
|
||||||
|
- less
|
||||||
|
- rsync
|
||||||
|
- vim-nox
|
||||||
|
|
||||||
|
- name: Configure misc software
|
||||||
|
copy: src={{ item.src }} dest={{ item.dest }}
|
||||||
|
with_items:
|
||||||
|
- { src: 'vimrc.local', dest: '/etc/vim/vimrc.local' }
|
Loading…
Reference in New Issue
Block a user