diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-01-10 17:46:07 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-01-10 17:46:07 +0000 |
| commit | 45ac512054af7cb8104cfa785102b67164d2cca4 (patch) | |
| tree | 096a7f4a1e3e5719e10a02032a55f9fbdede4b52 /lib/puppet/parser/interpreter.rb | |
| parent | 45c91e30c848011ff729505441fbf47a7f8df8fc (diff) | |
| download | puppet-45ac512054af7cb8104cfa785102b67164d2cca4.tar.gz puppet-45ac512054af7cb8104cfa785102b67164d2cca4.tar.xz puppet-45ac512054af7cb8104cfa785102b67164d2cca4.zip | |
Supporting puppetmasterd running as a non-root user, and doing some basic message cleanup
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@798 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser/interpreter.rb')
| -rw-r--r-- | lib/puppet/parser/interpreter.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/puppet/parser/interpreter.rb b/lib/puppet/parser/interpreter.rb index 6a8a333e8..344863ec0 100644 --- a/lib/puppet/parser/interpreter.rb +++ b/lib/puppet/parser/interpreter.rb @@ -133,7 +133,9 @@ module Puppet end end - Puppet.info "Reloading files" + if defined? @parser + Puppet.info "Reloading files" + end # should i be creating a new parser each time...? @parser = Puppet::Parser::Parser.new() @parser.file = @file |
