Sha256: dbec467ea61f5ffbfa28c078603f8b035fab9e9bdcd1891b6b461bcd2c6d0745

Contents?: true

Size: 679 Bytes

Versions: 1

Compression:

Stored size: 679 Bytes

Contents

require "pathname"

require "vagrant"

module VagrantPlugins
  module HostSUSE
    class Host < Vagrant.plugin("2", :host)
      def detect?(env)
        old_release_file = Pathname.new("/etc/SuSE-release")

        if old_release_file.exist?
          old_release_file.open("r") do |f|
            return true if f.gets =~ /^(openSUSE|SUSE Linux Enterprise)/
          end
        end

        new_release_file = Pathname.new("/etc/os-release")

        if new_release_file.exist?
          new_release_file.open("r") do |f|
            return true if f.gets =~ /(openSUSE|SLES)/
          end
        end

        false
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/hosts/suse/host.rb