Sha256: 933493dcd5247c9be8d1ae46e987324938c5414563de42a8f34fab67191dea24

Contents?: true

Size: 1.23 KB

Versions: 35

Compression:

Stored size: 1.23 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 'photonos' then Photonos.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 Photonos < Base
      def initialize(version)
        super(name: 'photonos', version: version)
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
bosh-stemcell-1.3178.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3177.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3173.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3169.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3167.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3165.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3163.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3160.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3157.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3156.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3155.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3153.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3149.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3148.0 lib/bosh/stemcell/operating_system.rb
bosh-stemcell-1.3147.0 lib/bosh/stemcell/operating_system.rb