* Linux Mint is a popular distribution based on Ubuntu * When creating a VM based on Linux Mint, it cannot detect that it is based on Ubuntu and it is detected as just linux and configure_networks fails * https://github.com/mitchellh/vagrant/issues/3647
16 lines
294 B
Ruby
16 lines
294 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestMint
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "Mint guest"
|
|
description "Mint guest support."
|
|
|
|
guest("mint", "ubuntu") do
|
|
require File.expand_path("../guest", __FILE__)
|
|
Guest
|
|
end
|
|
end
|
|
end
|
|
end
|