UNPKG

@installdoc/ansible-gas-station

Version:

An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤

20 lines (17 loc) 420 B
--- - name: Ensure latest RPM is downloaded get_url: url: "{{ hyper_rpm_url }}" dest: /tmp/hyper.rpm - name: "Ensure {{ app_name }} is installed" dnf: name: /tmp/hyper.rpm state: "{{ app_state | default('present') }}" disable_gpg_check: true - name: Ensure Fira Code font is installed include_role: name: helpers/fontinstall vars: fonts: - fira code when: install_fira_code