---
- name: "Ensure {{ app_name }}'s dependencies are installed"
  become: false
  community.general.homebrew:
    name: perl
    state: "{{ app_state | default('present') }}"

- name: Run generic Linux tasks
  include_tasks: install-Linux.yml
