aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/service.pp
diff options
context:
space:
mode:
authorFeng Pan <fpan@redhat.com>2016-11-07 19:22:21 -0500
committerFeng Pan <fpan@redhat.com>2016-11-21 21:27:09 -0500
commit9326e4237f4d161f297dc4493ab4928ea6e2bf0f (patch)
tree25372fa964fe84b160c5bfc58304285902edbefc /manifests/service.pp
parentc70bea9fb9cd5dfb29d7ab8f7aaae7324c31f1e3 (diff)
Initial Commit.
Change-Id: I212ec4be42357edddd931e9e479e33131ccd4bac Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'manifests/service.pp')
-rw-r--r--manifests/service.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/service.pp b/manifests/service.pp
new file mode 100644
index 0000000..cb08721
--- /dev/null
+++ b/manifests/service.pp
@@ -0,0 +1,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,
+ }
+}
+