summaryrefslogtreecommitdiffstats
path: root/examples/code/facts
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-08-29 21:03:46 +0000
committerLuke Kanies <luke@madstop.com>2005-08-29 21:03:46 +0000
commit914764b9d5045fb9a1824577546ca0559d2a1e88 (patch)
tree239011e6286208a5b074a73bb04c52fc3db67f5b /examples/code/facts
parenteab73144798bb66118501ba1d26cbac5a4e86bae (diff)
As Christian requested, I am no longer downcasing facts I receive from Facter. Also, removing some outdated files
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@599 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'examples/code/facts')
-rw-r--r--examples/code/facts22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/code/facts b/examples/code/facts
deleted file mode 100644
index fcfec2c0d..000000000
--- a/examples/code/facts
+++ /dev/null
@@ -1,22 +0,0 @@
-# $Id$
-
-# DISABLED
-
-# facts are now added to the top scope (e.g., operatingsystem and macaddress)
-
-# these facts have to get defined by the server onto the client before
-# we can retrieve their values
-#fact { "videocard":
-# interpreter => "/bin/sh",
-# code => "lspci | grep VGA",
-# os => "Linux"
-#}
-$testing = "value"
-$operatingsystem = fact("operatingsystem")
-$fact = addfact(
- name => "videocard",
- interpreter => "/bin/sh",
- code => "lspci | grep VGA",
- os => "Linux"
-)
-$card = fact("videocard")