2015-04-20 17:13:21 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestPhoton
|
2016-06-05 20:56:05 +00:00
|
|
|
class Guest < Vagrant.plugin("2", :guest)
|
2015-04-20 17:13:21 +00:00
|
|
|
def detect?(machine)
|
2018-03-01 11:05:26 +00:00
|
|
|
machine.communicate.test("cat /etc/photon-release | grep 'VMware Photon'")
|
2015-04-20 17:13:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|