mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 16:23:25 +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
|