12 lines
228 B
Ruby
12 lines
228 B
Ruby
|
require "vagrant"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module GuestAtomic
|
||
|
class Guest < Vagrant.plugin("2", :guest)
|
||
|
def detect?(machine)
|
||
|
machine.communicate.test("grep 'ostree=' /proc/cmdline")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|