diff options
author | Luke Kanies <luke@madstop.com> | 2005-05-21 23:07:57 +0000 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2005-05-21 23:07:57 +0000 |
commit | 03741b41b3fba65d10c9adafd8969913876e28d2 (patch) | |
tree | b9683cdb933bd71895e4fff68f13e45197131a4f /lib/blink/function.rb | |
parent | 4a4438dbf226335ea3c885a4ced32174d4123542 (diff) | |
download | puppet-03741b41b3fba65d10c9adafd8969913876e28d2.tar.gz puppet-03741b41b3fba65d10c9adafd8969913876e28d2.tar.xz puppet-03741b41b3fba65d10c9adafd8969913876e28d2.zip |
we now have networking
it is very basic right now:
the server gets passed a file name, and the client gets passed the server to which to
connect. The client gets its config, evaluates it, and exits
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@266 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/blink/function.rb')
-rw-r--r-- | lib/blink/function.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/blink/function.rb b/lib/blink/function.rb index 4f10fb2c6..d5cc11107 100644 --- a/lib/blink/function.rb +++ b/lib/blink/function.rb @@ -33,7 +33,7 @@ module Blink #--------------------------------------------------------------- end - Function.new("retrieve", proc { |fact| + Function.new("fact", proc { |fact| require 'blink/fact' value = Fact[fact] |