mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 12:46:39 +00:00
11 lines
253 B
YAML
11 lines
253 B
YAML
---
|
|
- hosts: localhost
|
|
tasks:
|
|
- homebrew:
|
|
name: ["{{ item.name }}"]
|
|
state: present
|
|
install_options: "{{ item.install_options | default() }}"
|
|
with_items:
|
|
- name: mkvtoolnix
|
|
install_options: --with-qt
|