Support for Elementary OS 0.4 - Issue #8471
This commit is contained in:
parent
7b3c34c040
commit
55da086f5f
|
@ -4,6 +4,7 @@ FEATURES:
|
||||||
|
|
||||||
- command/validate: Add Vagrantfile validation command [GH-8264, GH-8151]
|
- command/validate: Add Vagrantfile validation command [GH-8264, GH-8151]
|
||||||
- provider/hyperv: Support integration services configuration [GH-8379, GH-8378]
|
- provider/hyperv: Support integration services configuration [GH-8379, GH-8378]
|
||||||
|
- guest/elementary: Support for Elementary OS [GH-8471]
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
|
|
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue