Sha256: 94b8a46a0f0c08b7f0be1d45beffd86d189e985f7b841bb74a844a8bc12434b3

Contents?: true

Size: 650 Bytes

Versions: 62

Compression:

Stored size: 650 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

62 entries across 55 versions & 7 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/hosts/suse/host.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/hosts/suse/host.rb
vagrant-unbundled-2.3.3.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.3.2.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.19.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.18.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.16.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.14.0 plugins/hosts/suse/host.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.10.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.9.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.8.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.7.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.6.2 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.6.1 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.6.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.5.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.4.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.3.0 plugins/hosts/suse/host.rb
vagrant-unbundled-2.2.2.0 plugins/hosts/suse/host.rb