diff options
author | varac <varacanero@zeromail.org> | 2017-01-16 14:39:14 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2017-01-18 18:44:21 +0100 |
commit | 0117808a130c36f14f5b86879b52ed7ce2fa6d57 (patch) | |
tree | e26d0aec9b57eb3dd2b3544534e0d2c0a11cdf93 /puppet/modules/systemd/Rakefile | |
parent | b4df96ee1d654b4f56fe901e548e4a80207b60d9 (diff) |
git subrepo clone --force https://leap.se/git/puppet_systemd puppet/modules/systemd
subrepo:
subdir: "puppet/modules/systemd"
merged: "f3c4059"
upstream:
origin: "https://leap.se/git/puppet_systemd"
branch: "master"
commit: "f3c4059"
git-subrepo:
version: "0.3.0"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "841aa43"
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 |