foreman_datacenter 0.1.47 → 0.1.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d756ec7f3c2b8d5857f2b0c9c707f600bdbafd0
4
- data.tar.gz: 81020401067611e0e976048b54210dc8e4a223c2
3
+ metadata.gz: 939df6100118cf4668cde16490a2cb6d4030dc35
4
+ data.tar.gz: fa4a4448db4cc2ad2b2bcf25738e0574cfb7886f
5
5
  SHA512:
6
- metadata.gz: c2c056dc878faf80fc08592f7e909a7c0823e5b99d710c1296179f358eedeb0677c4c2d6c06f7610bb413f64fae8c373e8fac1ebe549c7855ee9071c09db7399
7
- data.tar.gz: c5d63932206c2fe0fc7cfefa06fcdb3acabe492d05e48217197bde6cdf0e235c585ad7b3dee4d4b1ea5e7e1bf4c18f0ee367603a33e2692fd9191f3028ef5708
6
+ metadata.gz: dc69e06292eefa62573c53d64c7435d5a386095f62ca76a4650ee2a16848ce0dacdfd125084e84b39ff8a453f9619880a04fccc8c6afcc64a0870daab03442df
7
+ data.tar.gz: ea73aa9a68d1b95efa9ce6f1009af056479418e28bd4a19ed68f32e92ed1d598d529aaa75ccfa8668e92a0a3dda277458394bee33af6c02fce539fd85b63ede8
@@ -127,6 +127,23 @@ module ForemanDatacenter
127
127
  return result
128
128
  end
129
129
 
130
+ def sync_interfaces_with_host
131
+ if host
132
+ existed_names = interfaces.map(&:name)
133
+ host.interfaces.each do |interface|
134
+ unless existed_names.include?(interface.identifier)
135
+ interfaces.create(
136
+ name: interface.identifier,
137
+ form_factor: ForemanDatacenter::DeviceInterface::DEFAULT_FORM_FACTOR,
138
+ mac_address: interface.mac,
139
+ ip_address: interface.ip,
140
+ mgmt_only: interface.identifier == 'ipmi'
141
+ )
142
+ end
143
+ end
144
+ end
145
+ end
146
+
130
147
  private
131
148
 
132
149
  def create_interfaces
@@ -149,24 +166,6 @@ module ForemanDatacenter
149
166
  end
150
167
  end
151
168
 
152
- def sync_interfaces_with_host
153
- if host
154
- existed_names = interfaces.map(&:name)
155
- # abort interfaces.map(&:identifier).inspect
156
- host.interfaces.each do |interface|
157
- unless existed_names.include?(interface.identifier)
158
- interfaces.create(
159
- name: interface.identifier,
160
- form_factor: ForemanDatacenter::DeviceInterface::DEFAULT_FORM_FACTOR,
161
- mac_address: interface.mac,
162
- ip_address: interface.ip,
163
- mgmt_only: interface.identifier == 'ipmi'
164
- )
165
- end
166
- end
167
- end
168
- end
169
-
170
169
  def create_console_ports
171
170
  device_type.console_port_templates.each do |template|
172
171
  console_ports.create(template.attrs_to_copy)
@@ -46,7 +46,7 @@
46
46
  <strong>Device</strong>
47
47
  </div>
48
48
  <!-- table_css_classes removed purposely -->
49
- <table class="table table-hover panel-body nonmarginbotton">
49
+ <table class="table table-hover panel-body nonmarginbottom">
50
50
  <tbody>
51
51
  <tr>
52
52
  <td>Site</td>
@@ -175,7 +175,7 @@
175
175
  <strong>Management</strong>
176
176
  </div>
177
177
  <!-- table_css_classes removed purposely -->
178
- <table class="table table-hover panel-body nonmarginbotton">
178
+ <table class="table table-hover panel-body nonmarginbottom">
179
179
  <tbody>
180
180
  <tr>
181
181
  <td>Role</td>
@@ -329,7 +329,7 @@
329
329
  <div class="panel-body">None</div>
330
330
  <% else %>
331
331
  <!-- table_css_classes removed purposely -->
332
- <table class="table table-hover panel-body nonmarginbotton">
332
+ <table class="table table-hover panel-body nonmarginbottom">
333
333
  <tbody>
334
334
  <%= render partial: 'interface', collection: @device.non_management_interfaces %>
335
335
  </tbody>
@@ -1,3 +1,3 @@
1
1
  module ForemanDatacenter
2
- VERSION = '0.1.47'.freeze
2
+ VERSION = '0.1.48'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_datacenter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.47
4
+ version: 0.1.48
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Ivanov