fuel-library/deployment/puppet/l23network/manifests/init.pp
Sergii Golovatiuk 42059bbf2a Replace merge_array function, linting for l23network
- Replace merge_array function with concat from stdlib
- Fix linting for l23network
- Disable the 80 character check in l23network Rakefile

Change-Id: Ie5ae6c7c247c070be80021c415a0a02d2819ec23
Closes-Bug: 1323597
2014-05-27 11:38:08 +00:00

17 lines
287 B
Puppet

# == Class: l23network
#
# Module for configuring network. Contains L2 and L3 modules.
# Requirements, packages and services.
#
class l23network (
$use_ovs = true,
$use_lnxbr = true,
){
class {'l23network::l2':
use_ovs => $use_ovs,
use_lnxbr => $use_lnxbr,
}
}
#
###