Optionally installs Vagrant (not on aarch64)

This commit is contained in:
Jan Beilicke 2021-05-23 14:13:17 +02:00
parent 527814829c
commit ec96ee42f1
2 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,4 @@
---
# defaults file for jotbe.dev-tools
enable_sublime_text: yes
enable_sublime_text: yes
enable_vagrant: no

View file

@ -7,3 +7,13 @@
tags:
- sublime_text
when: enable_sublime_text
- name: Install vagrant
become: yes
package:
name:
- vagrant
state: latest
when:
- ansible_architecture != "aarch64"
- enable_vagrant