knife-rhn 0.2.1 → 0.3.0
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.
- data/CHANGELOG.md +12 -0
- data/README.md +4 -0
- data/lib/chef/knife/rhn_system_details.rb +2 -0
- data/lib/knife-rhn/version.rb +1 -1
- metadata +3 -2
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
A knife plugin for managing Red Hat Network.
|
|
4
4
|
|
|
5
|
+
[](http://badge.fury.io/rb/knife-rhn)
|
|
6
|
+
|
|
7
|
+
[](https://codeclimate.com/github/bflad/knife-rhn)
|
|
8
|
+
|
|
5
9
|
## Installation
|
|
6
10
|
|
|
7
11
|
Uses [rhn_satellite rubygem](https://github.com/duritong/ruby-rhn_satellite) for the backend.
|
|
@@ -40,6 +40,8 @@ class Chef
|
|
|
40
40
|
ui.info "#{ui.color "Description", :cyan}:"
|
|
41
41
|
ui.info "#{details['description']}"
|
|
42
42
|
|
|
43
|
+
ui.info "#{ui.color "Last Check-In", :cyan}: #{satellite_system['last_checkin'].to_time}"
|
|
44
|
+
|
|
43
45
|
base_channel = RhnSatellite::System.subscribed_base_channel(satellite_system['id'])
|
|
44
46
|
child_channels = RhnSatellite::System.subscribed_child_channels(satellite_system['id'])
|
|
45
47
|
ui.info "#{ui.color "Subscribed Channels", :cyan}:"
|
data/lib/knife-rhn/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-rhn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-03-
|
|
12
|
+
date: 2013-03-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rhn_satellite
|
|
@@ -35,6 +35,7 @@ extensions: []
|
|
|
35
35
|
extra_rdoc_files: []
|
|
36
36
|
files:
|
|
37
37
|
- .gitignore
|
|
38
|
+
- CHANGELOG.md
|
|
38
39
|
- Gemfile
|
|
39
40
|
- README.md
|
|
40
41
|
- Rakefile
|