summaryrefslogtreecommitdiffstats
path: root/lib/puppet/util/warnings.rb
blob: 8e459147466e38cfee803d1e3961bae9e1542c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Methods to help with handling warnings.
module Puppet::Util::Warnings
    module_function

    def warnonce(msg)
        $stampwarnings ||= {}
        $stampwarnings[self.class] ||= []
        unless $stampwarnings[self.class].include? msg
            Puppet.warning msg
            $stampwarnings[self.class] << msg
        end
    end
end

# $Id$