diff options
author | James Turnbull <james@lovedthanlost.net> | 2009-02-10 15:12:48 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-02-10 15:12:48 +1100 |
commit | a932a69bcb5a09765d750dddd52fdfb16e0729de (patch) | |
tree | d44d19c3230e54bd7364f48e0743e39e3d8fdbca | |
parent | e52f962f44e98719212d788699ebaa6eb4d61904 (diff) | |
download | facter-a932a69bcb5a09765d750dddd52fdfb16e0729de.tar.gz facter-a932a69bcb5a09765d750dddd52fdfb16e0729de.tar.xz facter-a932a69bcb5a09765d750dddd52fdfb16e0729de.zip |
Added README.rst for Facter
-rw-r--r-- | README.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..3b69d09 --- /dev/null +++ b/README.rst @@ -0,0 +1,26 @@ +Facter +====== + +This package is largely meant to be a library for collecting facts about your +system. These facts are mostly strings (i.e., not numbers), and are things +like the output of ``uname``, public ssh and cfengine keys, the number of +processors, etc. + +See ``bin/facter`` for an example of the interface. + +Running Facter +++++++++++++++ + +Run the ``facter`` binary on the command for a full list of facts supported on your host. + +Adding your own facts ++++++++++++++++++++++ + +See the `Adding Facts`_ wiki page for details of how to add your own custom facts to Facter. + +Further Information ++++++++++++++++++++ + +See http://reductivelabs.com/projects/facter/ for more details. + +.. _Adding Facts: http://reductivelabs.com/trac/puppet/wiki/AddingFacts |