Support for Elementary OS 0.4 - Issue #8471

This commit is contained in:
BJ Dierkes 2017-04-12 01:12:01 -05:00
parent 7b3c34c040
commit 55da086f5f
3 changed files with 26 additions and 0 deletions

View File

@ -4,6 +4,7 @@ FEATURES:
- command/validate: Add Vagrantfile validation command [GH-8264, GH-8151]
- provider/hyperv: Support integration services configuration [GH-8379, GH-8378]
- guest/elementary: Support for Elementary OS [GH-8471]
IMPROVEMENTS:

View File

@ -0,0 +1,10 @@
require_relative '../linux/guest'
module VagrantPlugins
module GuestElementary
class Guest < VagrantPlugins::GuestLinux::Guest
# Name used for guest detection
GUEST_DETECTION_NAME = "elementary".freeze
end
end
end

View File

@ -0,0 +1,15 @@
require "vagrant"
module VagrantPlugins
module GuestElementary
class Plugin < Vagrant.plugin("2")
name "Elementary guest"
description "Elementary guest support."
guest(:elementary, :ubuntu) do
require_relative "guest"
Guest
end
end
end
end