christianlempa-boilerplates/ansible/ubuntu/inst-zsh.yaml
2024-12-18 14:19:23 +01:00

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