blob: c312d880928346f82c8e9db4692c9e85a2c422f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# == Class fdio::params
#
# This class manages the default params for the fdio class.
#
class fdio::params {
$repo_branch = 'release'
$vpp_exec_commands = undef
$vpp_exec_file = '/etc/vpp/vpp-exec'
$vpp_dpdk_support = true
$vpp_dpdk_devs = []
$vpp_dpdk_uio_driver = undef
$vpp_dpdk_dev_default_options = undef
$vpp_dpdk_socket_mem = undef
$vpp_cpu_main_core = undef
$vpp_cpu_corelist_workers = undef
$vpp_vhostuser_coalesce_frames = undef
$vpp_vhostuser_coalesce_time = undef
$vpp_vhostuser_dont_dump_memory = false
$vpp_tuntap_enable = undef
$vpp_tuntap_mtu = undef
$vpp_tapcli_mtu = undef
$copy_kernel_nic_ip = true
}
|