diff options
Diffstat (limited to 'testing/puppet-fdio/manifests/vpp/config.pp')
-rw-r--r-- | testing/puppet-fdio/manifests/vpp/config.pp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/puppet-fdio/manifests/vpp/config.pp b/testing/puppet-fdio/manifests/vpp/config.pp new file mode 100644 index 0000000..96c3497 --- /dev/null +++ b/testing/puppet-fdio/manifests/vpp/config.pp @@ -0,0 +1,18 @@ +# == Class fdio::vpp::config +# +# This class handles vpp config changes. +# +class fdio::vpp::config ( + $dpdk_pmd_type = $::fdio::params::dpdk_pmd_type, + $dpdk_pci_devs = $::fdio::params::dpdk_pci_devs, +){ + file { '/etc/vpp/startup.conf': + content => template('fdio/startup.conf.erb'), + } + + # ensure that uio-pci-generic is loaded + exec { 'modprobe uio-pci-generic': + unless => 'lsmod | grep uio-pci-generic', + path => '/bin:/sbin', + } +} |