aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/config/vpp_exec_line.pp
blob: 5c64487e3cd3028ba7fd1dc8c765c472951ab105 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# == Define: fdio::config::vpp_exec_line
#
# Defined type to configure VPP startup exec line
#
# === Parameters:
# [*path*]
# (required) Path of VPP exec file path
#
# [*line*]
# (required) VPP exec command
#
define fdio::config::vpp_exec_line (
  $path,
  $line = $title,
) {
  file_line { "${line}":
    path => $path,
    line => $line
  }
}