From 267557f0683ed54289b0ebe35f3c5fd166b960f7 Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Mon, 15 Oct 2018 21:47:26 +0200 Subject: [PATCH] common: install software on proxmox --- roles/common/tasks/Proxmox.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 roles/common/tasks/Proxmox.yml diff --git a/roles/common/tasks/Proxmox.yml b/roles/common/tasks/Proxmox.yml new file mode 100644 index 0000000..7537468 --- /dev/null +++ b/roles/common/tasks/Proxmox.yml @@ -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' }