lib/bosh/stemcell/operating_system.rb in bosh-stemcell-1.3146.10.0 vs lib/bosh/stemcell/operating_system.rb in bosh-stemcell-1.3147.0
- old
+ new
@@ -4,11 +4,11 @@
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)
+ when 'photonos' then Photonos.new(operating_system_version)
else raise ArgumentError.new("invalid operating system: #{operating_system_name}")
end
end
class Base
@@ -40,12 +40,12 @@
def initialize(version)
super(name: 'ubuntu', version: version)
end
end
- class Photon < Base
+ class Photonos < Base
def initialize(version)
- super(name: 'photon', version: version)
+ super(name: 'photonos', version: version)
end
end
end
end