spark/roles/base/tasks/shell.yml
2015-11-14 15:35:41 -08:00

16 lines
259 B
YAML

---
- name: Install Bash
pacman: name={{ item }} state=present
with_items:
- bash
- bash-completion
tags:
- shell
- name: Install ZSH
pacman: name={{ item }} state=present
with_items:
- zsh
- zsh-completions
tags:
- shell