Sha256: aa196bef69647bc28d8fd29cd0f4602d251e7684e45e59d68c14fe036f29cc31

Contents?: true

Size: 1.04 KB

Versions: 46

Compression:

Stored size: 1.04 KB

Contents

module Bosh::Stemcell
  module OperatingSystem

    def self.for(operating_system_name, operating_system_version = nil)
      case operating_system_name
        when 'centos' then Centos.new(operating_system_version)
        when 'rhel' then Rhel.new(operating_system_version)
        when 'ubuntu' then Ubuntu.new(operating_system_version)
        else raise ArgumentError.new("invalid operating system: #{operating_system_name}")
      end
    end

    class Base
      attr_reader :name, :version

      def initialize(options = {})
        @name = options.fetch(:name)
        @version = options.fetch(:version)
      end

      def ==(other)
        name == other.name
      end
    end

    class Rhel < Base
      def initialize(version)
        super(name: 'rhel', version: version)
      end
    end

    class Centos < Base
      def initialize(version)
        super(name: 'centos', version: version)
      end
    end

    class Ubuntu < Base
      def initialize(version)
        super(name: 'ubuntu', version: version)
      end
    end
  end
end

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
bosh-stemcell-1.3003.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3001.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3000.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2999.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2992.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2989.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2986.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2983.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2982.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2981.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2980.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2978.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2977.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2976.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2975.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2972.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2969.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2968.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2962.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.2957.0 lib/bosh/stemcell/operating_system.rb