Module: FogExtensions::Proxmox::ServerConfig
- Extended by:
- ActiveSupport::Concern
- Defined in:
- app/models/concerns/fog_extensions/proxmox/server_config.rb
Instance Method Summary collapse
Instance Method Details
#cloud_init? ⇒ Boolean
44 45 46 |
# File 'app/models/concerns/fog_extensions/proxmox/server_config.rb', line 44 def cloud_init? disks.any?(&:cloud_init?) end |
#cpu_type ⇒ Object
26 27 28 |
# File 'app/models/concerns/fog_extensions/proxmox/server_config.rb', line 26 def cpu_type Fog::Proxmox::CpuHelper.extract_cputype(cpu) end |
#rootfs_file ⇒ Object
40 41 42 |
# File 'app/models/concerns/fog_extensions/proxmox/server_config.rb', line 40 def rootfs_file disks.rootfs&.volid end |
#rootfs_storage ⇒ Object
36 37 38 |
# File 'app/models/concerns/fog_extensions/proxmox/server_config.rb', line 36 def rootfs_storage disks.rootfs&.storage end |