foreman_salt 6.0.0 → 6.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/db/migrate/20161103104146_add_index_to_join_tables.rb +8 -0
- data/lib/foreman_salt/version.rb +1 -1
- metadata +17 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 733c584c01f5f2afb84e13232bee306b925cace6
|
4
|
+
data.tar.gz: c385886527cae97cc54bf19b4d134b810f0379f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01f965af9e691a5ebb3a2471e88be157efe1cf847f255e376764417ef910b20bcbc78acaf1ff1a539478687c21b90808f76816061e41acb5b944035d9d260f56
|
7
|
+
data.tar.gz: 28911d24f528af912c2ed7d8edb8711fb7e5ab9652287337eb70c18d0cb8c9c17a82b5ba49e658e97bdde444ce65520cb71b748f20cea0249a13ad24fd6a3e65
|
@@ -0,0 +1,8 @@
|
|
1
|
+
class AddIndexToJoinTables < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
add_index :host_salt_modules, :host_id
|
4
|
+
add_index :host_salt_modules, :salt_module_id
|
5
|
+
add_index :hostgroup_salt_modules, :hostgroup_id
|
6
|
+
add_index :hostgroup_salt_modules, :salt_module_id
|
7
|
+
end
|
8
|
+
end
|
data/lib/foreman_salt/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_salt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen Benjamin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: deface
|
@@ -134,6 +134,7 @@ files:
|
|
134
134
|
- db/migrate/20150411003302_add_environments_to_modules.rb
|
135
135
|
- db/migrate/20150509094409_rename_join_tables.rb
|
136
136
|
- db/migrate/20150509101505_add_primary_keys.rb
|
137
|
+
- db/migrate/20161103104146_add_index_to_join_tables.rb
|
137
138
|
- db/seeds.d/75-salt_seeds.rb
|
138
139
|
- lib/foreman_salt.rb
|
139
140
|
- lib/foreman_salt/engine.rb
|
@@ -185,22 +186,22 @@ signing_key:
|
|
185
186
|
specification_version: 4
|
186
187
|
summary: Foreman Plug-in for Salt
|
187
188
|
test_files:
|
188
|
-
- test/
|
189
|
-
- test/
|
189
|
+
- test/factories/foreman_salt_factories.rb
|
190
|
+
- test/functional/api/v2/salt_autosign_controller_test.rb
|
191
|
+
- test/functional/api/v2/salt_environments_controller_test.rb
|
192
|
+
- test/functional/api/v2/salt_keys_controller_test.rb
|
193
|
+
- test/functional/api/v2/salt_states_controller_test.rb
|
194
|
+
- test/functional/minions_controller_test.rb
|
190
195
|
- test/integration/salt_autosign_test.rb
|
196
|
+
- test/integration/salt_environment_test.rb
|
191
197
|
- test/integration/salt_keys_test.rb
|
192
|
-
- test/
|
193
|
-
- test/unit/grains_importer_test.rb
|
198
|
+
- test/integration/salt_module_test.rb
|
194
199
|
- test/unit/grains_centos.json
|
195
|
-
- test/unit/host_extensions_test.rb
|
196
|
-
- test/unit/report_importer_test.rb
|
197
|
-
- test/unit/hostgroup_extensions_test.rb
|
198
|
-
- test/unit/salt_modules_test.rb
|
199
200
|
- test/unit/highstate.json
|
200
201
|
- test/unit/salt_keys_test.rb
|
201
|
-
- test/
|
202
|
-
- test/
|
203
|
-
- test/
|
204
|
-
- test/
|
205
|
-
- test/
|
206
|
-
- test/
|
202
|
+
- test/unit/salt_modules_test.rb
|
203
|
+
- test/unit/hostgroup_extensions_test.rb
|
204
|
+
- test/unit/report_importer_test.rb
|
205
|
+
- test/unit/grains_importer_test.rb
|
206
|
+
- test/unit/host_extensions_test.rb
|
207
|
+
- test/test_plugin_helper.rb
|