aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/service.pp
blob: cb087212b7c3c12072a6773cc0915148f978271f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# == Class fdio::service
#
# Configure and start VPP service.
#
class fdio::service {
  vpp_service { 'vpp' :
    ensure             => present,
    pci_devs           => $::fdio::vpp_dpdk_devs,
    state              => 'up',
    copy_kernel_nic_ip => $::fdio::copy_kernel_nic_ip,
  }
}