Merge pull request #6172 from glensc/pld/networking

fix network detection on pld-linux
This commit is contained in:
Mitchell Hashimoto 2015-11-18 12:08:53 -08:00
commit 4ccf83de44
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,11 @@
module VagrantPlugins
module GuestPld
module Cap
class Flavor
def self.flavor(machine)
return :pld
end
end
end
end
end

View File

@ -20,6 +20,11 @@ module VagrantPlugins
require_relative "cap/network_scripts_dir"
Cap::NetworkScriptsDir
end
guest_capability("pld", "flavor") do
require_relative "cap/flavor"
Cap::Flavor
end
end
end
end