GH-2088: Use proper regex capture group to detect OS version of RHEL family

This commit is contained in:
Michael G. Noll 2013-08-28 09:17:23 +02:00
parent 2b3951b91c
commit 95f5f553d9
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ module VagrantPlugins
release_file = Pathname.new("/etc/redhat-release") release_file = Pathname.new("/etc/redhat-release")
begin begin
release_file.open("r") do |f| release_file.open("r") do |f|
version_number = /(CentOS|Fedora).*release ([0-9]+)/.match(f.gets)[1].to_i version_number = /(CentOS|Fedora).*release ([0-9]+)/.match(f.gets)[2].to_i
if version_number >= 16 if version_number >= 16
# "service nfs-server" will redirect properly to systemctl # "service nfs-server" will redirect properly to systemctl
# when "service nfs-server restart" is called. # when "service nfs-server restart" is called.