starting rocky development patch

Depends-On: I75d827d383f701da8650cd0e9d1f2501e22cf6a2
Change-Id: I6fc0f0f2c1814e5e617acbde1cc76fc43f8aaebb
This commit is contained in:
Samuel Cassiba 2018-08-03 06:28:53 -07:00
parent b8e9a8e89a
commit 5a07ed0d6d
3 changed files with 23 additions and 2 deletions

View File

@ -1,3 +1,5 @@
inherit_from: .rubocop_todo.yml
AllCops: AllCops:
Include: Include:
- metadata.rb - metadata.rb

19
.rubocop_todo.yml Normal file
View File

@ -0,0 +1,19 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2018-08-03 05:26:08 -0700 using RuboCop version 0.55.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 1
# Cop supports --auto-correct.
Style/IfUnlessModifier:
Exclude:
- 'attributes/default.rb'
# Offense count: 18
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 116

View File

@ -3,7 +3,7 @@ maintainer 'openstack-chef'
maintainer_email 'openstack-dev@lists.openstack.org' maintainer_email 'openstack-dev@lists.openstack.org'
license 'Apache-2.0' license 'Apache-2.0'
description 'Provides the shared messaging configuration for Chef for OpenStack.' description 'Provides the shared messaging configuration for Chef for OpenStack.'
version '17.0.0' version '18.0.0'
recipe 'server', 'Installs and configures server packages for messaging queue used by the deployment.' recipe 'server', 'Installs and configures server packages for messaging queue used by the deployment.'
recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via the server recipe' recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via the server recipe'
@ -12,7 +12,7 @@ recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via th
supports os supports os
end end
depends 'openstack-common', '>= 17.0.0' depends 'openstack-common', '>= 18.0.0'
depends 'rabbitmq' depends 'rabbitmq'
issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url) issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url)