Sha256: 5856d957cf6b8d0e7306de46ebec58ae6768d8943320c3c84b811074be4ddaec

Contents?: true

Size: 379 Bytes

Versions: 148

Compression:

Stored size: 379 Bytes

Contents

# Log a message on the server at level alert.
Puppet::Functions.create_function(:alert, Puppet::Functions::InternalFunction) do
  # @param values The values to log.
  # @return [Undef]
  dispatch :alert do
    scope_param
    repeated_param 'Any', :values
    return_type 'Undef'
  end

  def alert(scope, *values)
    Puppet::Util::Log.log_func(scope, :alert, values)
  end
end

Version data entries

148 entries across 148 versions & 3 rubygems

Version Path
puppet-4.10.7 lib/puppet/functions/alert.rb
puppet-4.10.7-x86-mingw32 lib/puppet/functions/alert.rb
puppet-4.10.7-x64-mingw32 lib/puppet/functions/alert.rb
puppet-4.10.7-universal-darwin lib/puppet/functions/alert.rb
puppet-5.1.0 lib/puppet/functions/alert.rb
puppet-5.1.0-x86-mingw32 lib/puppet/functions/alert.rb
puppet-5.1.0-x64-mingw32 lib/puppet/functions/alert.rb
puppet-5.1.0-universal-darwin lib/puppet/functions/alert.rb
puppet-4.10.6 lib/puppet/functions/alert.rb
puppet-4.10.6-x86-mingw32 lib/puppet/functions/alert.rb
puppet-4.10.6-x64-mingw32 lib/puppet/functions/alert.rb
puppet-4.10.6-universal-darwin lib/puppet/functions/alert.rb
puppet-4.10.5 lib/puppet/functions/alert.rb
puppet-4.10.5-x86-mingw32 lib/puppet/functions/alert.rb
puppet-4.10.5-x64-mingw32 lib/puppet/functions/alert.rb
puppet-4.10.5-universal-darwin lib/puppet/functions/alert.rb
puppet-5.0.1 lib/puppet/functions/alert.rb
puppet-5.0.1-x86-mingw32 lib/puppet/functions/alert.rb
puppet-5.0.1-x64-mingw32 lib/puppet/functions/alert.rb
puppet-5.0.1-universal-darwin lib/puppet/functions/alert.rb