mirror of
https://github.com/balena-io/open-balena.git
synced 2025-06-24 10:18:15 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
fbf3007d4c | |||
2a3df9cd2a | |||
d71a90c1ef |
@ -1,3 +1,14 @@
|
||||
- commits:
|
||||
- subject: Auto-install required Vagrant plugins instead of erroring out
|
||||
hash: d71a90c1efcf75e6e33e0f63c9b49803ddafd3fd
|
||||
body: ''
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: Mark S. Maglana
|
||||
nested: []
|
||||
version: 3.3.2
|
||||
date: 2021-06-03T02:02:26.762Z
|
||||
- commits:
|
||||
- subject: >-
|
||||
scripts/compose: Delete Balena CLI version warning This can be removed
|
||||
|
@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
|
||||
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
# v3.3.2
|
||||
## (2021-06-03)
|
||||
|
||||
* Auto-install required Vagrant plugins instead of erroring out [Mark S. Maglana]
|
||||
|
||||
# v3.3.1
|
||||
## (2021-05-24)
|
||||
|
||||
|
13
Vagrantfile
vendored
13
Vagrantfile
vendored
@ -1,12 +1,11 @@
|
||||
Vagrant.require_version '>= 2.0.0'
|
||||
|
||||
[ 'vagrant-vbguest', 'vagrant-docker-compose' ].each do |p|
|
||||
unless Vagrant.has_plugin?(p)
|
||||
raise "Please install missing plugin: vagrant plugin install #{p}"
|
||||
end
|
||||
end
|
||||
Vagrant.require_version '>= 2.2.0'
|
||||
|
||||
Vagrant.configure('2') do |config|
|
||||
config.vagrant.plugins = [
|
||||
'vagrant-vbguest',
|
||||
'vagrant-docker-compose'
|
||||
]
|
||||
|
||||
config.vm.define 'openbalena'
|
||||
config.vm.hostname = 'openbalena-vagrant'
|
||||
config.vm.box = 'bento/ubuntu-18.04'
|
||||
|
Reference in New Issue
Block a user