mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 16:23:25 +01:00
13 lines
221 B
YAML
13 lines
221 B
YAML
---
|
|
- name: Install zsh
|
|
hosts: "{{ my_hosts | d([]) }}"
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Install zsh
|
|
ansible.builtin.apt:
|
|
name: zsh
|
|
state: present
|
|
update_cache: true
|
|
become: true
|