aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/service.pp
blob: e36133ee5899b22881c3bf32f8cc3d2dd586cc34 (plain)
1
2
3
4
5
6
7
8
9
10
# == Class fdio::service
#
# Configure and start VPP service.
#
class fdio::service {
  service { 'vpp' :
    ensure => running,
    enable => true,
  }
}