Merge pull request #5277 from Keeguon/fedora21

detect fedora 21
This commit is contained in:
Mitchell Hashimoto 2015-02-24 09:58:20 -08:00
commit eca5ab0a4d
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][67890]' /etc/redhat-release")
machine.communicate.test("grep 'Fedora release [12][678901]' /etc/redhat-release")
end
end
end