blob: 5eb4a4f9de1e4145cce57765f8116aa1b2c04e46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Puppet::Parser::Functions
newfunction(
:sprintf, :type => :rvalue,
:doc => "Perform printf-style formatting of text.
The first parameter is format string describing how the rest of the parameters should be formatted. See the documentation for the `Kernel::sprintf` function in Ruby for all the details.") do |args|
raise Puppet::ParseError, 'sprintf() needs at least one argument' if args.length < 1
fmt = args.shift
return sprintf(fmt, *args)
end
end
|