summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/is_valid_mac_address.rb
blob: a00d87420afacf3376e41e6ec2c602d7e442394a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# is_valid_mac_address.rb
#

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

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

    mac = arguments[0]

    if /^[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}:[a-fA-F0-9]{1,2}$/.match(mac) then
      return true
    else
      return false
    end

  end
end

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