Revision cbd09cdac11dbbfcbc790cbf1e53ce876a875fce authored by Bryan Davis on 02 June 2017, 15:10:26 UTC, committed by Faidon Liambotis on 03 June 2017, 15:20:30 UTC
Fix the need for a manual restart of the ircecho service when the
configuration is changed by making the config file notify the Service
resource that is created by Base::Service_unit. Also change the require
for Base::Service_unit to wait on provisioning of the actual python
script. There is no need to require the config anymore because of the
notify relationship.

Change-Id: I2621d741f44278edd9ff428fd2d864b4d4ebc292
1 parent a9cc2c0
Raw File
.rubocop.yml
inherit_from: .rubocop_todo.yml

# Copied from
# https://www.mediawiki.org/wiki/Manual:Coding_conventions/Ruby#Base_configuration

AllCops:
  StyleGuideCopsOnly: true
  Exclude:
    # third party modules
    - 'modules/mysql/**/*'
    - 'modules/rsync/**/*'
    - 'modules/stdlib/**/*'
    - 'modules/puppetdbquery/**/*'
    - 'modules/lvm/**/*'
    # bundler installation files
    - 'vendor/**/*'

# Uncomment when lines are 100 characters or less
# Metrics/LineLength:
#   Max: 100

Metrics/MethodLength:
  Enabled: false

Style/Alias:
  Enabled: false

# Let us whatever delimiters we want eg: %{One Two} or %r%/tmp%
Style/PercentLiteralDelimiters:
  Enabled: false

Style/SignalException:
  Enabled: false

Style/StringLiterals:
  EnforcedStyle: single_quotes

Style/TrivialAccessors:
  ExactNameMatch: true

Style/WordArray:
  Enabled: false
back to top