diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-04 23:13:55 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-04 23:13:55 +0000 |
commit | e8c04716b2e3ef348848d85ed88c886bd43d95df (patch) | |
tree | f2b813830ba9e43d2a63f95110b0aa72d6809c0f /lib/puppet | |
parent | 92302895549800d9d8384b2cc77f9b5bb4dc1fd1 (diff) | |
download | puppet-e8c04716b2e3ef348848d85ed88c886bd43d95df.tar.gz puppet-e8c04716b2e3ef348848d85ed88c886bd43d95df.tar.xz puppet-e8c04716b2e3ef348848d85ed88c886bd43d95df.zip |
Fixing a couple of bugs in preparation for 0.15.2; mostly they were in the testing system and resulted from changing :File to :Manifest in server/master
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1068 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/client.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/client.rb b/lib/puppet/client.rb index f0f0968bf..200834dc5 100644 --- a/lib/puppet/client.rb +++ b/lib/puppet/client.rb @@ -15,8 +15,8 @@ module Puppet # should be in the network client, not the normal client. But if i do # that, it's hard to tell whether the certs have been initialized. include Puppet::Daemon - attr_reader :local, :secureinit - attr_accessor :schedule, :lastrun + attr_reader :secureinit + attr_accessor :schedule, :lastrun, :local class << self attr_reader :drivername |