2015-12-13 18:54:49 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Install misc software
|
2017-07-02 22:17:32 +02:00
|
|
|
pkgng: name={{ item }}
|
2015-12-13 18:54:49 +01:00
|
|
|
with_items:
|
|
|
|
- vim-lite
|
2016-04-07 16:09:04 +02:00
|
|
|
- htop
|
2015-12-13 18:54:49 +01:00
|
|
|
- zsh
|
|
|
|
|
|
|
|
- name: Configure misc software
|
|
|
|
copy: src={{ item.src }} dest={{ item.dest }}
|
|
|
|
with_items:
|
|
|
|
- { src: '.zshrc', dest: '/root/.zshrc' }
|
|
|
|
- { src: '.zshrc.local', dest: '/root/.zshrc.local' }
|