13 lines
208 B
Ruby
13 lines
208 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestLinux
|
|
class Guest < Vagrant.plugin("2", :guest)
|
|
def detect?(machine)
|
|
# TODO: Linux detection
|
|
false
|
|
end
|
|
end
|
|
end
|
|
end
|