]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/neutron/lib/puppet/parser/functions/validate_network_vlan_ranges.rb
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / neutron / lib / puppet / parser / functions / validate_network_vlan_ranges.rb
1 #
2 # Copyright (C) 2013 eNovance SAS <licensing@enovance.com>
3 #
4 # Author: Emilien Macchi <emilien.macchi@enovance.com>
5 #         Martin Magr <mmagr@redhat.com>
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License"); you may
8 # not use this file except in compliance with the License. You may obtain
9 # a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16 # License for the specific language governing permissions and limitations
17 # under the License.
18 #
19 # Advanced validation for VLAN configuration
20 #
21
22 module Puppet::Parser::Functions
23   newfunction(:validate_network_vlan_ranges) do |args|
24     value = args[0]
25     if not value.kind_of?(Array)
26       value = [value]
27     end
28
29     value.each do |range|
30       if m = /^(.+:)?(\d+):(\d+)$/.match(range)
31         first_id = Integer(m[-2])
32         second_id = Integer(m[-1])
33         if (first_id > 4094) || (second_id > 4094)
34           raise Puppet::Error, "vlan id are invalid."
35         end
36         if ((second_id - first_id) < 0 )
37           raise Puppet::Error, "network vlan ranges are invalid."
38         end
39       elsif m = /^([^:]+)?(:\d+)?$/.match(range)
40         # Either only name of physical network or single vlan id has
41         # been passed. This is also correct.
42       elsif range
43         raise Puppet::Error, "network vlan ranges are invalid."
44       end
45     end
46   end
47 end