@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 (13 loc) • 394 B
YAML
- name: "Ensure {{ app_name }}'s dependencies are installed"
become: false
community.general.homebrew:
name: "{{ shdoc_dependencies }}"
state: present
- name: Run generic Linux tasks
include_tasks: install-Linux.yml
- name: Ensure gawk is linked to /usr/bin
lineinfile:
path: /usr/local/bin/shdoc
regexp: '^#!/usr/bin/gawk -f'
line: '#!/usr/local/bin/gawk -f'