foreman_omaha 0.0.1 → 0.0.2
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 +4 -4
- data/README.md +1 -1
- data/app/models/concerns/foreman_omaha/host_extensions.rb +1 -1
- data/lib/foreman_omaha/version.rb +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c40493ee95139d2621cc06d655b33f261e4f9fa5
|
|
4
|
+
data.tar.gz: 702a0818709f83f31d94f13e682565ca5d33105e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5f4835601a8843d36e0381ff3c0b0d6c36be09ae9013a6a5ac9fe277aa7e5c015ed2f8077d3d73c057abbdfaab792452b3f238ac6c167e6bdedc80dd9ebdaae
|
|
7
|
+
data.tar.gz: 0c678a22af766c6cb3c1968ed3394e547efc9314f1e72bc32627ac7d5273fb406962bb9031b958c47c736fd57830f576d7c26eb2938559b63f36a0616673333f
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# ForemanOmaha
|
|
2
2
|
|
|
3
3
|
This plug-in enables CoreOS updates using [The Foreman](https://theforeman.org/) without using the public update infrastructure.
|
|
4
|
-
To follow along with common Foreman architecture, you need this Foreman plug-in installed and a [Smart-Proxy plugin](https://github.com/
|
|
4
|
+
To follow along with common Foreman architecture, you need this Foreman plug-in installed and a [Smart-Proxy plugin](https://github.com/timogoebel/smart_proxy_omaha). The smart-proxy plug-in does all the heavy lifting. The Foreman plug-in shows facts and reports for your hosts.
|
|
5
5
|
Foreman core already supports deploying CoreOS hosts and is great for on-premise setups. This plug-in enables you to better manage your servers.
|
|
6
6
|
|
|
7
7
|
## Compatibility
|
|
@@ -3,7 +3,7 @@ module ForemanOmaha
|
|
|
3
3
|
extend ActiveSupport::Concern
|
|
4
4
|
included do
|
|
5
5
|
has_many :omaha_reports, :class_name => '::ForemanOmaha::OmahaReport',
|
|
6
|
-
:foreign_key => :host_id
|
|
6
|
+
:foreign_key => :host_id, :dependent => :destroy
|
|
7
7
|
has_one :last_omaha_report_object, -> { order("#{Report.table_name}.id DESC") },
|
|
8
8
|
:foreign_key => :host_id, :class_name => '::ForemanOmaha::OmahaReport'
|
|
9
9
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: foreman_omaha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Timo Goebel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -90,7 +90,7 @@ files:
|
|
|
90
90
|
- test/functional/omaha_reports_controller_test.rb
|
|
91
91
|
- test/test_plugin_helper.rb
|
|
92
92
|
- test/unit/omaha_report_test.rb
|
|
93
|
-
homepage: http://github.com/
|
|
93
|
+
homepage: http://github.com/timogoebel/foreman_omaha
|
|
94
94
|
licenses:
|
|
95
95
|
- GPL-3
|
|
96
96
|
metadata: {}
|
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
110
|
version: '0'
|
|
111
111
|
requirements: []
|
|
112
112
|
rubyforge_project:
|
|
113
|
-
rubygems_version: 2.
|
|
113
|
+
rubygems_version: 2.5.1
|
|
114
114
|
signing_key:
|
|
115
115
|
specification_version: 4
|
|
116
116
|
summary: This plug-in adds support for the Omaha procotol to The Foreman.
|
|
@@ -122,4 +122,3 @@ test_files:
|
|
|
122
122
|
- test/functional/omaha_reports_controller_test.rb
|
|
123
123
|
- test/test_plugin_helper.rb
|
|
124
124
|
- test/unit/omaha_report_test.rb
|
|
125
|
-
has_rdoc:
|