Sha256: f44e6205fc415252b6fe2583682253a910b9821b364de7d6ed8e8eee6ee32662

Contents?: true

Size: 1.43 KB

Versions: 11

Compression:

Stored size: 1.43 KB

Contents

#!/usr/bin/env ruby
#
# = Synopsis
#
# Collect and display facts about the system.
#
# = Usage
#
#   facter [-d|--debug] [-h|--help] [-p|--puppet] [-v|--version] [-y|--yaml] [-j|--json] [fact] [fact] [...]
#
# = Description
#
# Collect and display facts about the current system.  The library behind
# Facter is easy to expand, making Facter an easy way to collect information
# about a system from within the shell or within Ruby.
#
# If no facts are specifically asked for, then all facts will be returned.
#
# = Options
#
# yaml::
#   Emit facts in YAML format.
#
# json::
#   Emit facts in JSON format.
#
# puppet::
#   Load the Puppet libraries, thus allowing Facter to load Puppet-specific facts.
#
# version::
#   Print the version and exit.
#
# help::
#   Print this help message.
#
# debug::
#   Enable debugging.
#
# trace::
#   Enable backtraces.
#
# timing::
#   Enable timing.
#
# = Example
#
#   facter kernel
#
# = Author
#
# Luke Kanies
#
# = Copyright
#
# Copyright (c) 2011 Puppet Labs, Inc
# Licensed under the Apache 2.0 license

# Bundler and rubygems maintain a set of directories from which to
# load gems. If Bundler is loaded, let it determine what can be
# loaded. If it's not loaded, then use rubygems. But do this before
# loading any facter code, so that our gem loading system is sane.
if not defined? ::Bundler
  begin
    require 'rubygems'
  rescue LoadError
  end
end

require 'facter/application'

Facter::Application.run(ARGV)

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
librarian-puppet-0.9.9 vendor/gems/ruby/1.9.1/gems/facter-1.6.17/bin/facter
facter-1.6.18 bin/facter
facter-1.6.18.rc1 bin/facter
librarian-puppet-0.9.8 vendor/gems/ruby/1.9.1/gems/facter-1.6.17/bin/facter
facter-1.6.17 bin/facter
facter-1.6.17.rc1 bin/facter
facter-1.6.16 bin/facter
facter-1.6.15 bin/facter
facter-1.6.15.rc1 bin/facter
facter-1.6.14 bin/facter
facter-1.6.14.rc1 bin/facter