summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/is_valid_domain_name.rb
blob: c0b319c16c87a0ef0e17116ffcd5d713739b8952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# is_valid_domain_name.rb
#

module Puppet::Parser::Functions
  newfunction(:is_valid_domain_name, :type => :rvalue, :doc => <<-EOS
    EOS
  ) do |arguments|

    if (arguments.size != 1) then
      raise(Puppet::ParseError, "is_valid_domain_name(): Wrong number of arguments "+
        "given #{arguments.size} for 1")
    end

  end
end

# vim: set ts=2 sw=2 et :