diff options
author | Varac <varac@leap.se> | 2017-01-18 17:40:25 +0000 |
---|---|---|
committer | Varac <varac@leap.se> | 2017-01-18 17:40:25 +0000 |
commit | 8cba23d7308af4ed018d42935adee442e2e53134 (patch) | |
tree | 96135e4aed98a2e366d5ba1c05b37e2cdeebf901 /puppet/modules/systemd/Rakefile | |
parent | dd189d2de941ec081261ced814a9c822e5ef02a1 (diff) | |
parent | 80e0ca380e92fe435622dbd35d1a5baedb6c3f92 (diff) |
Merge branch 'apache-auto-restart' into 'master'
Add apache auto-restart extension file
See merge request !66
Diffstat (limited to 'puppet/modules/systemd/Rakefile')
-rw-r--r-- | puppet/modules/systemd/Rakefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/puppet/modules/systemd/Rakefile b/puppet/modules/systemd/Rakefile index adcac180..aa7b8a15 100644 --- a/puppet/modules/systemd/Rakefile +++ b/puppet/modules/systemd/Rakefile @@ -4,20 +4,14 @@ require 'puppet-lint/tasks/puppet-lint' Rake::Task[:lint].clear PuppetLint::RakeTask.new :lint do |config| config.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp", "vendor/**/*.pp"] - config.disable_checks = ['80chars'] + config.disable_checks = ['140chars'] config.fail_on_warnings = true end PuppetSyntax.exclude_paths = ["spec/fixtures/**/*.pp", "vendor/**/*"] # Publishing tasks -unless RUBY_VERSION =~ /^1\.8/ +unless RUBY_VERSION =~ /^1\./ require 'puppet_blacksmith' require 'puppet_blacksmith/rake_tasks' - require 'github_changelog_generator/task' - GitHubChangelogGenerator::RakeTask.new :changelog do |config| - m = Blacksmith::Modulefile.new - config.future_release = m.version - config.release_url = "https://forge.puppetlabs.com/#{m.author}/#{m.name}/%s" - end end |