mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 08:13:18 +01:00
11 lines
191 B
YAML
11 lines
191 B
YAML
---
|
|
- name: install zsh
|
|
hosts: "{{ hosts }}"
|
|
become: yes
|
|
tasks:
|
|
- name: install zsh
|
|
apt:
|
|
name: zsh
|
|
state: present
|
|
update_cache: true
|
|
become: true |