inst-zsh.yaml 221 B

123456789101112
  1. ---
  2. - name: Install zsh
  3. hosts: "{{ my_hosts | d([]) }}"
  4. become: true
  5. tasks:
  6. - name: Install zsh
  7. ansible.builtin.apt:
  8. name: zsh
  9. state: present
  10. update_cache: true
  11. become: true