# File lib/puppet/agent.rb, line 89
89:     def splay
90:         return unless Puppet[:splay]
91:         return if splayed?
92: 
93:         time = rand(Integer(Puppet[:splaylimit]) + 1)
94:         Puppet.info "Sleeping for %s seconds (splay is enabled)" % time
95:         sleep(time)
96:         @splayed = true
97:     end