diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-26 05:39:58 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-26 05:39:58 +0000 |
| commit | 46ce36b175962ce89e06af4863d2c9dc50f2a02f (patch) | |
| tree | aeff2dacfd81caddce54666e2d155e07b6ad09e8 /lib/puppet/client | |
| parent | ccc4d95dd28164f6f10763a758db85db0d48984c (diff) | |
Creating a simplistic, generic function framework in the parser, so it is now very easy to add new functions. There is a pretty crappy, hardwired distinction between functions that return values and those that do not, but I do not see a good way around it right now. Functions are also currently responsible for handling their own arity, although I have plans for fixing that.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1134 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/client')
| -rw-r--r-- | lib/puppet/client/master.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/puppet/client/master.rb b/lib/puppet/client/master.rb index 999938284..c56946650 100644 --- a/lib/puppet/client/master.rb +++ b/lib/puppet/client/master.rb @@ -2,7 +2,9 @@ require 'sync' class Puppet::Client::MasterClient < Puppet::Client - @@sync = Sync.new + unless defined? @@sync + @@sync = Sync.new + end Puppet.setdefaults("puppetd", :puppetdlockfile => [ "$statedir/puppetdlock", |
