@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
16 lines (14 loc) • 390 B
YAML
- name: "Ensure {{ app_name }} is installed"
become: false
community.general.homebrew_cask:
name: hyper
state: "{{ app_state | default('present') }}"
accept_external_apps: "{{ allow_external_apps | default(false) }}"
- name: Ensure Fira Code font is installed
include_role:
name: helpers/fontinstall
vars:
fonts:
- fira code
when: install_fira_code