Compare commits

..

3 Commits

Author SHA1 Message Date
fbf3007d4c v3.3.2 2021-06-04 08:42:20 +03:00
2a3df9cd2a Merge pull request #119 from relaxdiego/master
Auto-install required Vagrant plugins intead of erroring out
2021-06-04 05:40:18 +00:00
d71a90c1ef Auto-install required Vagrant plugins instead of erroring out
Change-type: patch
2021-06-03 09:59:44 +08:00
4 changed files with 23 additions and 8 deletions

View File

@ -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

View File

@ -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)

View File

@ -1 +1 @@
3.3.1
3.3.2

13
Vagrantfile vendored
View File

@ -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'