lint: Fix lint issues (missing documentation for define types)

The gem 'puppet-lint-param-docs' was bumped to 1.2.0 and now handle
class and define type. This patch fix lint issues (missing documentation).

Change-Id: I4c4445b9d0a73bb555d04601d07fd34d2f61a480
This commit is contained in:
Sebastien Badia 2015-06-25 11:41:35 +02:00
parent d3da602940
commit c058c29dc3
1 changed files with 20 additions and 0 deletions

View File

@ -27,6 +27,26 @@
# This define creates a service resource with title tuskar-${name} and
# conditionally creates a package resource with title tuskar-${name}
#
# === Parameters:
#
# [*package_name*]
# (mandatory) The package name (for the generic_service)
#
# [*service_name*]
# (mandatory) The service name (for the generic_service)
#
# [*enabled*]
# (optional) Define if the service must be enabled or not
# Defaults to false.
#
# [*manage_service*]
# (optional) Manage or not the service (if a service_name is provided).
# Defaults to true.
#
# [*package_ensure*]
# (optional) Control the ensure parameter for the package ressource.
# Defaults to 'present'.
#
define tuskar::generic_service(
$package_name,
$service_name,