detect fedora 19 and 20

This commit is contained in:
Ryan S. Brown 2014-01-02 11:09:11 -06:00
parent b5c2a8e570
commit 23ce05d166
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 1[678]' /etc/redhat-release")
machine.communicate.test("grep 'Fedora release [12][67890]' /etc/redhat-release")
end
end
end