Sha256: 4094ea7807f4719c3318f40d3d7e22a5ea4fed2a0b0abaf007c2dd0b7540ee18

Contents?: true

Size: 1.79 KB

Versions: 4

Compression:

Stored size: 1.79 KB

Contents

# frozen_string_literal: true

# Copyright 2019 Tristan Robert

# This file is part of ForemanFogProxmox.

# ForemanFogProxmox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# ForemanFogProxmox is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>.

module ForemanFogProxmox
  module ProxmoxOperatingSystems
    def compute_os_types(host)
      os_linux_types_mapping(host).empty? ? os_windows_types_mapping(host) : os_linux_types_mapping(host)
    end

    def available_operating_systems
      operating_systems = ['other', 'solaris']
      operating_systems += available_linux_operating_systems
      operating_systems += available_windows_operating_systems
      operating_systems
    end

    def available_linux_operating_systems
      ['l24', 'l26', 'debian', 'ubuntu', 'centos', 'fedora', 'opensuse', 'archlinux', 'gentoo', 'alpine']
    end

    def available_windows_operating_systems
      ['wxp', 'w2k', 'w2k3', 'w2k8', 'wvista', 'win7', 'win8', 'win10']
    end

    def os_linux_types_mapping(host)
      ['Debian', 'Redhat', 'Suse', 'Altlinux', 'Archlinux', 'Coreos', 'Gentoo'].include?(host.operatingsystem.type) ? available_linux_operating_systems : []
    end

    def os_windows_types_mapping(host)
      ['Windows'].include?(host.operatingsystem.type) ? available_windows_operating_systems : []
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
foreman_fog_proxmox-0.12.4 app/models/foreman_fog_proxmox/proxmox_operating_systems.rb
foreman_fog_proxmox-0.12.2 app/models/foreman_fog_proxmox/proxmox_operating_systems.rb
foreman_fog_proxmox-0.12.1 app/models/foreman_fog_proxmox/proxmox_operating_systems.rb
foreman_fog_proxmox-0.12.0 app/models/foreman_fog_proxmox/proxmox_operating_systems.rb