2014-08-31 05:44:48 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestRedHat
|
|
|
|
module Cap
|
|
|
|
class Flavor
|
|
|
|
def self.flavor(machine)
|
|
|
|
# Read the version file
|
|
|
|
output = ""
|
|
|
|
machine.communicate.sudo("cat /etc/redhat-release") do |type, data|
|
|
|
|
output += data if type == :stdout
|
|
|
|
end
|
|
|
|
output.chomp!
|
|
|
|
|
|
|
|
# Detect various flavors we care about
|
2015-02-08 00:56:44 +00:00
|
|
|
if output =~ /(CentOS|Red Hat Enterprise|Scientific) Linux( .+)? release 7/i
|
2014-08-31 05:44:48 +00:00
|
|
|
return :rhel_7
|
|
|
|
else
|
|
|
|
return :rhel
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|