Identify operating systems closely related to CoreOS
If the the value of ID= is not recognised, identify the OS if it is a derivative of CoreOS https://www.freedesktop.org/software/systemd/man/os-release.html#ID_LIKE=
This commit is contained in:
parent
419afb4dcf
commit
52a8b0c65e
|
@ -4,7 +4,7 @@ module VagrantPlugins
|
|||
module GuestCoreOS
|
||||
class Guest < Vagrant.plugin("2", :guest)
|
||||
def detect?(machine)
|
||||
machine.communicate.test("cat /etc/os-release | grep ID=coreos")
|
||||
machine.communicate.test("(cat /etc/os-release | grep ID=coreos) || (cat /etc/os-release | grep -E 'ID_LIKE=.*coreos.*')")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue