Skip to content

Commit

Permalink
Remove Optional[] for Stdlib:Absolutepath data type
Browse files Browse the repository at this point in the history
  • Loading branch information
prabiegx committed Feb 20, 2020
1 parent 4a3cbe4 commit 0ce966d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manifests/plugin/dpdk_telemetry.pp
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# @param dpdk_socket_path UNIX domain DPDK telemetry socket to be connected to send messages.
#
class collectd::plugin::dpdk_telemetry (
Enum['present', 'absent'] $ensure = 'present',
Optional[Stdlib::Absolutepath] $client_socket_path = '/var/run/.client',
Optional[Stdlib::Absolutepath] $dpdk_socket_path = '/var/run/dpdk/rte/telemetry',
Enum['present', 'absent'] $ensure = 'present',
Stdlib::Absolutepath $client_socket_path = '/var/run/.client',
Stdlib::Absolutepath $dpdk_socket_path = '/var/run/dpdk/rte/telemetry',
) {

include collectd
Expand Down

0 comments on commit 0ce966d

Please sign in to comment.