Mercurial > repos > other > Puppet
view modules/ssh/Rakefile @ 433:e7491c126d95
Set filename on php.conf
This _should_ prevent PHP exploding every time our PHP package
updates and it recreates the default config file.
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 21 Feb 2023 15:56:26 +0000 |
parents | d9009f54eb23 |
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.send('disable_relative_classname_inclusion') PuppetLint.configuration.relative = true PuppetLint.configuration.ignore_paths = ['spec/**/*.pp', 'pkg/**/*.pp', 'vendor/**/*.pp'] desc 'Validate manifests, templates, ruby files and shell scripts' task :validate do Dir['spec/**/*.rb', 'lib/**/*.rb'].each do |ruby_file| sh "ruby -c #{ruby_file}" unless ruby_file =~ /spec\/fixtures/ end end