linode.rb

Path: lib/ohai/plugins/linode.rb
Last Update: Thu Jan 17 19:03:16 +0000 2013
dot/f_0.png
Author:Aaron Kalin (<akalin@martinisoftware.com>)
License:Apache License, Version 2.0

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Methods

Public Instance methods

Names linode ip address

name - symbol of ohai name (e.g. :public_ip) eth - Interface name (e.g. :eth0)

Alters linode mash with new interface based on name parameter

[Source]

    # File lib/ohai/plugins/linode.rb, line 42
42: def get_ip_address(name, eth)
43:   network[:interfaces][eth][:addresses].each do |key, info|
44:     linode[name] = key if info['family'] == 'inet'
45:   end
46: end

Checks for matching linode kernel name

Returns true or false

[Source]

    # File lib/ohai/plugins/linode.rb, line 25
25: def has_linode_kernel?
26:   kernel[:release].split('-').last =~ /linode/
27: end

Identifies the linode cloud by preferring the hint, then

Returns true or false

[Source]

    # File lib/ohai/plugins/linode.rb, line 32
32: def looks_like_linode?
33:   hint?('linode') || has_linode_kernel?
34: end

[Validate]