Sha256: fce0c1de0e1b208d0c8c2faf1796262fd433c53601bd69e85f3c51378c730169

Contents?: true

Size: 559 Bytes

Versions: 37

Compression:

Stored size: 559 Bytes

Contents

# Fact: zones#
#
# Purpose:
#   Return the list of zones on the system and add one zones_ fact
#   for each zone with its state e.g. running, incomplete or installed.
#
# Resolution:
#   Uses 'usr/sbin/zoneadm list -cp' to get the list of zones in separate parsable
#   lines with delimeter being ':' which is used to split the line string and get
#   the zone details.
#
# Caveats:
#   We dont support below s10 where zones are not available.
require 'facter/util/solaris_zones'
if Facter.value(:kernel) == 'SunOS'
  Facter::Util::SolarisZones.add_facts
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
facter-2.1.0 lib/facter/zones.rb
facter-2.1.0-x86-mingw32 lib/facter/zones.rb
facter-2.1.0-x64-mingw32 lib/facter/zones.rb
facter-2.1.0-universal-darwin lib/facter/zones.rb
facter-1.7.6 lib/facter/zones.rb
facter-2.0.2 lib/facter/zones.rb
facter-2.0.2-x86-mingw32 lib/facter/zones.rb
facter-2.0.2-universal-darwin lib/facter/zones.rb
facter-2.0.1 lib/facter/zones.rb
facter-2.0.1-x86-mingw32 lib/facter/zones.rb
facter-2.0.1-universal-darwin lib/facter/zones.rb
facter-2.0.1.rc4 lib/facter/zones.rb
facter-2.0.1.rc4-x86-mingw32 lib/facter/zones.rb
facter-2.0.1.rc4-universal-darwin lib/facter/zones.rb
facter-2.0.1.rc3 lib/facter/zones.rb
facter-2.0.1.rc3-x86-mingw32 lib/facter/zones.rb
facter-2.0.1.rc3-universal-darwin lib/facter/zones.rb
facter-2.0.1.rc2 lib/facter/zones.rb
facter-2.0.1.rc2-x86-mingw32 lib/facter/zones.rb
facter-2.0.1.rc2-universal-darwin lib/facter/zones.rb