mirror of
https://github.com/pigmonkey/spark.git
synced 2026-07-22 23:49:43 +00:00
https://docs.ansible.com/ansible/latest/porting_guides/porting_guide_2.7.html#using-a-loop-on-a-package-module-via-squash-actions
18 lines
237 B
YAML
18 lines
237 B
YAML
---
|
|
- name: Install Bash
|
|
pacman:
|
|
name:
|
|
- bash
|
|
- bash-completion
|
|
state: present
|
|
tags:
|
|
- shell
|
|
|
|
- name: Install ZSH
|
|
pacman:
|
|
name:
|
|
- zsh
|
|
- zsh-completions
|
|
state: present
|
|
tags:
|
|
- shell
|