Recognize new Fedora releases

This commit is contained in:
Josef Stribny 2015-05-19 10:44:25 +02:00
parent 261ef836e0
commit b85248cb97
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ module VagrantPlugins
module GuestFedora
class Guest < Vagrant.plugin("2", :guest)
def detect?(machine)
machine.communicate.test("grep 'Fedora release [12][678901]' /etc/redhat-release")
machine.communicate.test("grep 'Fedora release 1[6789]\\|Fedora release 2[0-9]' /etc/redhat-release")
end
end
end