view modules/common/Rakefile @ 473:9437c6ffa07c

Fix hg dirstate change by changing cron user Any sites with changes that didn't get added to the `dirstate` (e.g. by `hg prompt`) will result in the next `hg` command rebuilding the dirstate under that owner. If the `hg-check-status` command runs as root then we end up with a root-owned dirstate. This most frequently happened on BDStrike.co.uk because of Wordpress auto-updates that the check found first.
author IBBoard <dev@ibboard.co.uk>
date Sat, 25 May 2024 18:31:52 +0100
parents 750d36241580
children
line wrap: on
line source

require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.send('disable_140chars')
PuppetLint.configuration.relative = true
PuppetLint.configuration.ignore_paths = ['spec/**/*.pp', 'pkg/**/*.pp', 'vendor/**/*.pp']

desc 'Validate manifests, templates, and ruby files'
task :validate do
  Dir['spec/**/*.rb', 'lib/**/*.rb'].each do |ruby_file|
    sh "ruby -c #{ruby_file}" unless ruby_file =~ /spec\/fixtures/
  end
  Dir['files/**/*.sh'].each do |shell_script|
    sh "bash -n #{shell_script}"
  end
end