blob: 5e354c9a97f53544d2f0c7bf66c54e20eafa4a7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# is_valid_mac_address.rb
#
module Puppet::Parser::Functions
newfunction(:is_valid_mac_address, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
end
end
# vim: set ts=2 sw=2 et :
|