Ewoud Kohl van Wijngaarden
Ewoud Kohl van Wijngaarden
When there's splay=true in /etc/puppetlabs/puppet/puppet.conf, puppet apply waits a random period (up to 30 minutes). Kafo deals with this by using --config=/tmp/.../puppet.conf which is generated in the ExecutionEnvironment. The boot...
When there's splay=true in /etc/puppetlabs/puppet/puppet.conf, puppet apply waits a random period (up to 30 minutes). Kafo deals with this by using --config=/tmp/.../puppet.conf which is generated in the ExecutionEnvironment. The boot...
These are the latest versions. Packaging already uses these versions. I have no clue if this works, just submitting it to see what CI thinks. This what RPMs run with...
This reduces the duplication between projects. For example, this ensures testing on Ruby 2.7 which previously didn't happen. There are various preparation PRs, see the commits for details. Right now...
No parameters are generated for model-only parameters. We often have Django model defaults which we don't override in factories, but do override in tests. For example: ``` python class Book(models.Model):...
Consider the following config ```yaml cachedir: '/var/cache/g10k' sources: control: remote: 'https://example.com/my-git-repo' basedir: '/var/lib/g10k/environments' ``` Then I run g10k. This does what I want and we can see that: ```console #...
The goal is to remove duplication and make it easy to use mod classes where needed. This makes using the module without default mods easier. It also removes duplication. This...
This attempts to unify SELinux handling in the tests. It moves the package installation to the acceptance spec helper to reduce duplication. It then makes the set_apache_defaults line idempotent and...
This adds rspec-github as a dependency and at runtime it is optionally configured. The detection is the same as for Rubocop. In https://github.com/voxpupuli/puppet-example/pull/22 I've showcased that this works: ![Screen Shot...
WHen running tests I noticed this: fatal: ls-files -i must be used with either -o or -c However, rake proceeded so it wasn't failing. This isn't a complete PR, but...