Sha256: 523027e16f39dbe500f5eeebe3f1a833a89ed14398cbe67ab4758d24f6dab288

Contents?: true

Size: 436 Bytes

Versions: 2

Compression:

Stored size: 436 Bytes

Contents

#  Created by Luke Kanies on 2007-07-04.
#  Copyright (c) 2007. All rights reserved.

module Puppet::Util::LogPaths
    # return the full path to us, for logging and rollback
    # some classes (e.g., FileTypeRecords) will have to override this
    def path
        unless defined? @path
            @path = pathbuilder
        end

        return "/" + @path.join("/")
    end
end

# $Id: log_paths.rb 2647 2007-07-04 22:25:23Z luke $

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
puppet-0.23.1 lib/puppet/util/log_paths.rb
puppet-0.23.2 lib/puppet/util/log_paths.rb