ohai 6.20.0 → 6.22.0.rc.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e3872010f8bc963540ab72655b4dd162db4e3e59
4
+ data.tar.gz: 8447bce3ab96458b3d9273fa055cef1f29552c4a
5
+ SHA512:
6
+ metadata.gz: 3260b0e87284e822bb5408d5525eb406b325cdb4c49b49b452cb0b775d9dcacad46d2da46c06685831606c8089c645f2eaafb1821da27771ee2756dc172ef4a6
7
+ data.tar.gz: cb88f272673036b3f28d10302685339917bcc9e0282c1485e6b4e8c474ddd8db5477359b61210c83838baa207bfc279e744df1c6ed92bdda44ddb9eef1ae320b
@@ -76,14 +76,14 @@ The file against which Ohai will run.
76
76
  .B \fB\-h\fP, \fB\-\-help\fP
77
77
  Shows help for the command.
78
78
  .TP
79
- .B \fB\-l LEVEL\fP, \fB\-\-log\-level LEVEL\fP
79
+ .B \fB\-l LEVEL\fP, \fB\-\-log_level LEVEL\fP
80
80
  The level of logging that will be stored in a log file: \fBdebug\fP, \fBinfo\fP, \fBwarn\fP, \fBerror\fP, or \fBfatal\fP.
81
81
  .TP
82
82
  .B \fB\-L LOGLOCATION\fP, \fB\-\-logfile c\fP
83
83
  The location in which log file output files will be saved. If this location is set to something other than \fBSTDOUT\fP, standard output logging will still be performed (otherwise there would be no output other than to a file).
84
84
  .TP
85
85
  .B \fB\-v\fP, \fB\-\-version\fP
86
- The version of the chef\-client.
86
+ The version of Ohai.
87
87
  .UNINDENT
88
88
  .SH AUTHOR
89
89
  Opscode
@@ -18,10 +18,11 @@
18
18
 
19
19
  provides "fqdn", "domain"
20
20
 
21
+ require_plugin "os"
21
22
  require_plugin "#{os}::hostname"
22
23
 
23
24
  # Domain is everything after the first dot
24
25
  if fqdn
25
26
  fqdn =~ /.+?\.(.*)/
26
27
  domain $1
27
- end
28
+ end
@@ -6,9 +6,9 @@
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
7
7
  # you may not use this file except in compliance with the License.
8
8
  # You may obtain a copy of the License at
9
- #
9
+ #
10
10
  # http://www.apache.org/licenses/LICENSE-2.0
11
- #
11
+ #
12
12
  # Unless required by applicable law or agreed to in writing, software
13
13
  # distributed under the License is distributed on an "AS IS" BASIS,
14
14
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -22,8 +22,8 @@ require_plugin "languages"
22
22
  java = Mash.new
23
23
 
24
24
  status, stdout, stderr = nil
25
- if RUBY_PLATFORM.downcase.include?("darwin")
26
- if system("/usr/libexec/java_home 2>&1 >/dev/null")
25
+ if RUBY_PLATFORM.downcase.include?("darwin")
26
+ if system("/usr/libexec/java_home >/dev/null 2>&1")
27
27
  status, stdout, stderr = run_command(:no_status_check => true, :command => "java -version")
28
28
  end
29
29
  else
@@ -20,7 +20,21 @@ provides "hostname", "fqdn"
20
20
 
21
21
  hostname from("hostname -s")
22
22
  begin
23
- fqdn from("hostname --fqdn")
23
+ ourfqdn = from("hostname --fqdn")
24
+ # Sometimes... very rarely, but sometimes, 'hostname --fqdn' falsely
25
+ # returns a blank string. WTF.
26
+ if ourfqdn.nil? || ourfqdn.empty?
27
+ Ohai::Log.debug("hostname --fqdn returned an empty string, retrying " +
28
+ "once.")
29
+ ourfqdn = from("hostname --fqdn")
30
+ end
31
+
32
+ if ourfqdn.nil? || ourfqdn.empty?
33
+ Ohai::Log.debug("hostname --fqdn returned an empty string twice and " +
34
+ "will not be set.")
35
+ else
36
+ fqdn ourfqdn
37
+ end
24
38
  rescue
25
- Ohai::Log.debug("hostname -f returned an error, probably no domain is set")
39
+ Ohai::Log.debug("hostname --fqdn returned an error, probably no domain set")
26
40
  end
@@ -6,9 +6,9 @@
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
7
7
  # you may not use this file except in compliance with the License.
8
8
  # You may obtain a copy of the License at
9
- #
9
+ #
10
10
  # http://www.apache.org/licenses/LICENSE-2.0
11
- #
11
+ #
12
12
  # Unless required by applicable law or agreed to in writing, software
13
13
  # distributed under the License is distributed on an "AS IS" BASIS,
14
14
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -18,6 +18,5 @@
18
18
 
19
19
  module Ohai
20
20
  OHAI_ROOT = File.expand_path(File.dirname(__FILE__))
21
- VERSION = '6.20.0'
21
+ VERSION = '6.22.0.rc.0'
22
22
  end
23
-
@@ -35,5 +35,15 @@ describe Ohai::System, "hostname plugin" do
35
35
  @ohai._require_plugin("hostname")
36
36
  @ohai.domain.should == nil
37
37
  end
38
-
38
+
39
+ it "should require the os plugin" do
40
+ @ohai.should_receive(:require_plugin).with("os").and_return(true)
41
+ @ohai._require_plugin("hostname")
42
+ end
43
+
44
+ it "should load a platform specific hostname plugin" do
45
+ @ohai[:os] = "linux"
46
+ @ohai.should_receive(:require_plugin).with("linux::hostname").and_return(true)
47
+ @ohai._require_plugin("hostname")
48
+ end
39
49
  end
@@ -45,8 +45,17 @@ describe Ohai::System, "Linux hostname plugin" do
45
45
  @ohai._require_plugin("linux::hostname")
46
46
  @ohai.fqdn.should == nil
47
47
  end
48
-
49
48
  end
50
-
49
+
50
+ describe "when hostname --fqdn is emtpy" do
51
+ before(:each) do
52
+ @ohai.stub!(:from).with("hostname --fqdn").
53
+ and_return("", "katie.bethell")
54
+ end
55
+ it "should call it twice" do
56
+ @ohai._require_plugin("linux::hostname")
57
+ @ohai.fqdn.should == "katie.bethell"
58
+ end
59
+ end
51
60
  end
52
61
 
metadata CHANGED
@@ -1,206 +1,181 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ohai
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.20.0
5
- prerelease:
4
+ version: 6.22.0.rc.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Adam Jacob
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-10-31 00:00:00.000000000 Z
11
+ date: 2014-03-31 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: systemu
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
19
  version: 2.5.2
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
26
  version: 2.5.2
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: yajl-ruby
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: mixlib-cli
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: mixlib-config
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - ">="
68
60
  - !ruby/object:Gem::Version
69
61
  version: '0'
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - ">="
76
67
  - !ruby/object:Gem::Version
77
68
  version: '0'
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: mixlib-log
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - ">="
84
74
  - !ruby/object:Gem::Version
85
75
  version: '0'
86
76
  type: :runtime
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - ">="
92
81
  - !ruby/object:Gem::Version
93
82
  version: '0'
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: mixlib-shellout
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ! '>='
87
+ - - ">="
100
88
  - !ruby/object:Gem::Version
101
89
  version: '0'
102
90
  type: :runtime
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ! '>='
94
+ - - ">="
108
95
  - !ruby/object:Gem::Version
109
96
  version: '0'
110
97
  - !ruby/object:Gem::Dependency
111
98
  name: ipaddress
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
- - - ! '>='
101
+ - - ">="
116
102
  - !ruby/object:Gem::Version
117
103
  version: '0'
118
104
  type: :runtime
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
107
  requirements:
123
- - - ! '>='
108
+ - - ">="
124
109
  - !ruby/object:Gem::Version
125
110
  version: '0'
126
111
  - !ruby/object:Gem::Dependency
127
112
  name: rake
128
113
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
114
  requirements:
131
- - - ! '>='
115
+ - - ">="
132
116
  - !ruby/object:Gem::Version
133
117
  version: '0'
134
118
  type: :development
135
119
  prerelease: false
136
120
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
121
  requirements:
139
- - - ! '>='
122
+ - - ">="
140
123
  - !ruby/object:Gem::Version
141
124
  version: '0'
142
125
  - !ruby/object:Gem::Dependency
143
126
  name: rspec-core
144
127
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
128
  requirements:
147
- - - ! '>='
129
+ - - ">="
148
130
  - !ruby/object:Gem::Version
149
131
  version: '0'
150
132
  type: :development
151
133
  prerelease: false
152
134
  version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
135
  requirements:
155
- - - ! '>='
136
+ - - ">="
156
137
  - !ruby/object:Gem::Version
157
138
  version: '0'
158
139
  - !ruby/object:Gem::Dependency
159
140
  name: rspec-expectations
160
141
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
142
  requirements:
163
- - - ! '>='
143
+ - - ">="
164
144
  - !ruby/object:Gem::Version
165
145
  version: '0'
166
146
  type: :development
167
147
  prerelease: false
168
148
  version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
149
  requirements:
171
- - - ! '>='
150
+ - - ">="
172
151
  - !ruby/object:Gem::Version
173
152
  version: '0'
174
153
  - !ruby/object:Gem::Dependency
175
154
  name: rspec-mocks
176
155
  requirement: !ruby/object:Gem::Requirement
177
- none: false
178
156
  requirements:
179
- - - ! '>='
157
+ - - ">="
180
158
  - !ruby/object:Gem::Version
181
159
  version: '0'
182
160
  type: :development
183
161
  prerelease: false
184
162
  version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
163
  requirements:
187
- - - ! '>='
164
+ - - ">="
188
165
  - !ruby/object:Gem::Version
189
166
  version: '0'
190
167
  - !ruby/object:Gem::Dependency
191
168
  name: rspec_junit_formatter
192
169
  requirement: !ruby/object:Gem::Requirement
193
- none: false
194
170
  requirements:
195
- - - ! '>='
171
+ - - ">="
196
172
  - !ruby/object:Gem::Version
197
173
  version: '0'
198
174
  type: :development
199
175
  prerelease: false
200
176
  version_requirements: !ruby/object:Gem::Requirement
201
- none: false
202
177
  requirements:
203
- - - ! '>='
178
+ - - ">="
204
179
  - !ruby/object:Gem::Version
205
180
  version: '0'
206
181
  description: Ohai profiles your system and emits JSON
@@ -213,7 +188,9 @@ files:
213
188
  - LICENSE
214
189
  - README.rdoc
215
190
  - Rakefile
191
+ - bin/ohai
216
192
  - docs/man/man1/ohai.1
193
+ - lib/ohai.rb
217
194
  - lib/ohai/application.rb
218
195
  - lib/ohai/config.rb
219
196
  - lib/ohai/exception.rb
@@ -360,7 +337,6 @@ files:
360
337
  - lib/ohai/plugins/windows/uptime.rb
361
338
  - lib/ohai/system.rb
362
339
  - lib/ohai/version.rb
363
- - lib/ohai.rb
364
340
  - spec/ohai_spec.rb
365
341
  - spec/rcov.opts
366
342
  - spec/spec.opts
@@ -440,29 +416,27 @@ files:
440
416
  - spec/unit/plugins/solaris2/virtualization_spec.rb
441
417
  - spec/unit/plugins/ssh_host_keys_spec.rb
442
418
  - spec/unit/system_spec.rb
443
- - bin/ohai
444
419
  homepage: http://wiki.opscode.com/display/chef/Ohai
445
420
  licenses: []
421
+ metadata: {}
446
422
  post_install_message:
447
423
  rdoc_options: []
448
424
  require_paths:
449
425
  - lib
450
426
  required_ruby_version: !ruby/object:Gem::Requirement
451
- none: false
452
427
  requirements:
453
- - - ! '>='
428
+ - - ">="
454
429
  - !ruby/object:Gem::Version
455
430
  version: '0'
456
431
  required_rubygems_version: !ruby/object:Gem::Requirement
457
- none: false
458
432
  requirements:
459
- - - ! '>='
433
+ - - ">"
460
434
  - !ruby/object:Gem::Version
461
- version: '0'
435
+ version: 1.3.1
462
436
  requirements: []
463
437
  rubyforge_project:
464
- rubygems_version: 1.8.23
438
+ rubygems_version: 2.2.2
465
439
  signing_key:
466
- specification_version: 3
440
+ specification_version: 4
467
441
  summary: Ohai profiles your system and emits JSON
468
442
  test_files: []