Fix puppet-lint before upgrading gem

Removing puppet-lint warnings
in favor of upgrading to latest gem

2016-09-13 21:09:56.710873 | manifests/api.pp:164:WARNING: line has more than 140 characters
2016-09-13 21:09:56.711049 | manifests/policy.pp:9:WARNING: line has more than 140 characters

Change-Id: If2cbb71b07c1fd8a6c98562671ed409e08573c17
This commit is contained in:
Carlos Camacho 2016-09-14 13:40:14 +02:00
parent f1814fc266
commit 6a8beb15d4
2 changed files with 6 additions and 2 deletions

View File

@ -161,7 +161,8 @@ class ceilometer::api (
# we need to make sure ceilometer-api/eventlet is stopped before trying to start apache
Service['ceilometer-api'] -> Service[$service_name]
} else {
fail('Invalid service_name. Either ceilometer/openstack-ceilometer-api for running as a standalone service, or httpd for being run by a httpd server')
fail('Invalid service_name. Either ceilometer/openstack-ceilometer-api for \
running as a standalone service, or httpd for being run by a httpd server')
}
ceilometer_config {

View File

@ -6,7 +6,10 @@
#
# [*policies*]
# (Optional) Set of policies to configure for ceilometer
# Example : { 'ceilometer-context_is_admin' => {'context_is_admin' => 'true'}, 'ceilometer-default' => {'default' => 'rule:admin_or_owner'} }
# Example : {
# 'ceilometer-context_is_admin' => {'context_is_admin' => 'true'},
# 'ceilometer-default' => {'default' => 'rule:admin_or_owner'}
# }
# Defaults to empty hash.
#
# [*policy_path*]