Skip to content

Commit

Permalink
Merge pull request #17365 from agrare/bz_1533728_reconfigure_iso
Browse files Browse the repository at this point in the history
Add support for reconfigure cdroms
  • Loading branch information
gmcculloug authored May 2, 2018
2 parents fbabf62 + c8fbfdc commit dbbaacb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/models/mixins/supports_feature_mixin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ module SupportsFeatureMixin
:reconfigure_disks => 'Reconfigure Virtual Machines Disks',
:reconfigure_disksize => 'Reconfigure Virtual Machines Disk Size',
:reconfigure_network_adapters => 'Reconfigure Network Adapters',
:reconfigure_cdroms => 'Reconfigure Virtual Machines CD/DVDs',
:refresh_network_interfaces => 'Refresh Network Interfaces for a Host',
:refresh_new_target => 'Refresh non-existing record',
:regions => 'Regions of a Provider',
Expand Down
2 changes: 2 additions & 0 deletions app/models/vm_reconfigure_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ def self.get_description(req_obj)
new_settings << "Resize Disks: #{req_obj.options[:disk_resize].length}" if req_obj.options[:disk_resize].present?
new_settings << "Add Network Adapters: #{req_obj.options[:network_adapter_add].length}" if req_obj.options[:network_adapter_add].present?
new_settings << "Remove Network Adapters: #{req_obj.options[:network_adapter_remove].length}" if req_obj.options[:network_adapter_remove].present?
new_settings << "Attach CD/DVDs: #{req_obj.options[:cdrom_connect].length}" if req_obj.options[:cdrom_connect].present?
new_settings << "Detach CD/DVDs: #{req_obj.options[:cdrom_disconnect].length}" if req_obj.options[:cdrom_disconnect].present?
"#{request_class::TASK_DESCRIPTION} for: #{name} - #{new_settings.join(", ")}"
end

Expand Down

0 comments on commit dbbaacb

Please sign in to comment.