Sha256: 8c48654c3731a52dfbb35a8dfbf7938db4d8f33946fa5162b898651230ae9110

Contents?: true

Size: 1.22 KB

Versions: 40

Compression:

Stored size: 1.22 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)
        when 'photon' then Photon.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
    
    class Photon < Base
      def initialize(version)
        super(name: 'photon', version: version)
      end
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
bosh-stemcell-1.3126.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3125.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3123.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3122.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3120.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3115.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3112.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3104.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3100.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3098.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3094.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3093.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3091.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3088.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3087.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3074.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3072.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3071.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3069.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3068.0 lib/bosh/stemcell/operating_system.rb