@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
15 lines (13 loc) • 399 B
YAML
- name: "Ensure {{ app_name }} is installed"
become: false
community.general.homebrew:
name: appium
state: "{{ app_state | default('present') }}"
- name: Ensure Appium Desktop is installed
become: false
community.general.homebrew_cask:
name: appium
state: "{{ app_state | default('present') }}"
sudo_password: "{{ ansible_password }}"
accept_external_apps: true