forked from infra/ansible
15 lines
285 B
YAML
15 lines
285 B
YAML
---
|
|
|
|
- name: Install misc software
|
|
pkgng:
|
|
name:
|
|
- vim-lite
|
|
- htop
|
|
- 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' }
|